13 lines
127 B
C++
13 lines
127 B
C++
|
struct Foo {
|
||
|
int x;
|
||
|
int y;
|
||
|
char c;
|
||
|
}
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
Foo foo;
|
||
|
// The location after the dot is line 11, col 7
|
||
|
foo.
|
||
|
}
|