1 /*
2 REQUIRED_ARGS: -o- -de
3 TEST_OUTPUT:
4 ---
5 fail_compilation/fail4559.d(13): Deprecation: use `{ }` for an empty statement, not `;`
6 fail_compilation/fail4559.d(19): Deprecation: use `{ }` for an empty statement, not `;`
7 fail_compilation/fail4559.d(21): Deprecation: use `{ }` for an empty statement, not `;`
8 ---
9 */
10 
foo()11 void foo()
12 {
13     int x;;
14     enum A
15     {
16         a,
17         b,
18         c
19     };
20 
21     void bar() {};
22 }
23