YouCompleteMe/cpp/ycm/tests/testdata/goto.cpp

19 lines
161 B
C++
Raw Normal View History

struct Foo {
int bar;
int zoo;
};
struct Bar {
int foo;
int zoo;
};
struct Foo;
struct Zoo;
void func() {
Foo foo;
foo.bar = 5;
Zoo *zoo = 0;
}