ccls/foo/b.cc
Jacob Dufault e55124b7be Misc
2017-04-14 21:56:51 -07:00

12 lines
97 B
C++

namespace {
struct Foo2 {
virtual void foobar() = 0;
};
void x() {
int bar = 3;
bar++;
}
}