https://gcc.gnu.org/bugzilla/show_bug.cgi?id=120239
Bug ID: 120239
Summary: error: expected ';' before '}' token
Product: gcc
Version: 14.1.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
Assignee: unassigned at gcc dot gnu.org
Reporter: [email protected]
Target Milestone: ---
frank@mars:~/work/raetsel/nachtschicht/2025# cat /tmp/test.cpp
void f ()
{
{ 0 };
}
frank@mars:~/work/raetsel/nachtschicht/2025# g++ /tmp/test.cpp
/tmp/test.cpp: In function 'void f()':
/tmp/test.cpp:3:6: error: expected ';' before '}' token
3 | { 0 };
| ^~
| ;