Update cpp grammar and add test

Fixes https://github.com/microsoft/vscode/issues/80644
This commit is contained in:
Alex Ross
2019-09-16 15:38:05 +02:00
parent 8ac1c0b5ae
commit 0070dabc0e
3 changed files with 542 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
struct Foo {
Foo();
int a;
int b;
int c;
};
Foo::Foo()
: a(1),
// b(2),
c(3) {}