mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
11 lines
133 B
Makefile
11 lines
133 B
Makefile
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail63.d(11): Error: debug `Foo` defined after use
|
|
---
|
|
*/
|
|
|
|
debug (Foo)
|
|
int x;
|
|
|
|
debug = Foo;
|