dmd/compiler/test/compilable/emptystatement.d
2023-07-13 08:46:57 -07:00

19 lines
146 B
D

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