mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 23:55:08 +00:00
12 lines
97 B
C++
12 lines
97 B
C++
namespace {
|
|
|
|
struct Foo2 {
|
|
virtual void foobar() = 0;
|
|
};
|
|
|
|
void x() {
|
|
int bar = 3;
|
|
|
|
bar++;
|
|
}
|
|
} |