mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
19 lines
146 B
D
19 lines
146 B
D
/*
|
|
REQUIRED_ARGS:
|
|
TEST_OUTPUT:
|
|
---
|
|
---
|
|
*/
|
|
|
|
void foo()
|
|
{
|
|
int x;;
|
|
enum A
|
|
{
|
|
a,
|
|
b,
|
|
c
|
|
};
|
|
|
|
void bar() {};
|
|
}
|