mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
11 lines
390 B
D
11 lines
390 B
D
/**
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/diag_debug_conditional.d(1): Error: identifier expected inside `debug(...)`, not `alias`
|
|
fail_compilation/diag_debug_conditional.d(2): Error: identifier expected inside `version(...)`, not `alias`
|
|
fail_compilation/diag_debug_conditional.d(3): Error: declaration expected following attribute, not end of file
|
|
---
|
|
*/
|
|
#line 1
|
|
debug(alias)
|
|
version(alias)
|