resurrect empty statement (#15409)

This commit is contained in:
Walter Bright 2023-07-13 08:46:57 -07:00 committed by GitHub
parent 90f5bd1635
commit b6a970643d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 23 deletions

View file

@ -0,0 +1,19 @@
/*
REQUIRED_ARGS:
TEST_OUTPUT:
---
---
*/
void foo()
{
int x;;
enum A
{
a,
b,
c
};
void bar() {};
}