cppparser
cppparser copied to clipboard
Parse error when comment is nested inside struct initializer
This is an example of code that generates the error
struct S { bool a; bool b; };
int main() { S s { false,
//error here
false };
return 0;
}