blob: f1f98af419076707f20b72ac280bb2cede16f73f [file] [log] [blame]
// To generate the corresponding EXE/PDB, run:
// cl /Zi test.cpp
namespace NS {
struct Foo {
void bar() {}
};
}
void foo() {
}
int main() {
foo();
NS::Foo f;
f.bar();
}