Files
clice/tests/CodeCompletion/test.cpp
2024-10-27 13:31:26 +08:00

13 lines
116 B
C++

struct X {
int x;
};
void foo(int x, int y);
int main() {
X xxx;
xxx.x = 2;
foo()
return 0;
}