To check: Debug the following and select `a()` on the call stack. ```ahk a() a() { var := "abc" b() } b() { ; @Debug-Breakpoint } ``` The `var` in the watch expression should display `"abc"`, but in fact it does not.