1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
void foo() { int a; vector<unsigned> b; long c; decltype(a) d; } void bar() { int a; std::vector<unsigned> b; long c; decltype(a) d; }