标签: clang llvm-clang
有没有办法找出Clang中特定语句中哪些变量在同一范围内?
例如:
int a; { int b; } int c;
变量b的作用域深度与变量a和c的作用域深度不同。
b
a
c