1. Create a new C++ file
2. Add text:
int boop = 0;
void foo() try {
} catch (...) {
boop++;
}
VA Outline
Expected:
- shows just "boop" and "foo" top level symbols
Actual:
- shows "boop" and "foo() try" and "catch(...)" top-level symbols
Search for references to "boop"
Expected:
- Finds the global definition
- Finds the 'boop++' in the 'foo' function
Actual:
- Finds the global definition
- Finds the 'boop++' in a 'catch' block (right line number, though)

Version info
VA_X.dll file version 10.9.2089.0 built 2016.02.01
DevEnv.exe version 14.0.24720.0 Enterprise
msenv.dll version 14.0.24720.0