3d55748400
The user is asked about loading unknown extra conf files, as they were before.
14 lines
129 B
C++
14 lines
129 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.
|
|
}
|
|
|