Why does LZZ tell me that the line typedef enum _foo { a } foo;
has a syntax error?
Test.lzz:1:19: Syntax error before '{'.
Test.lzz:1:1: Discarding 'typedef'.
Test.lzz:1:28: Syntax error before ';'.
Test.lzz:1:28: Inserting '<identifier>' before ';'.
From the documentation:
This tool doesn't accept C++ as its input; it accepts a cut-down language that looks vaguely like C++, producing C++ as its output. If you want to use it, you will have to learn its own language, and hope that it's adequate for the code you want to write. Personally, I'd suggest you stick to Standard C++, since that language is well documented and widely understood.