mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
11 lines
288 B
Makefile
11 lines
288 B
Makefile
// https://issues.dlang.org/show_bug.cgi?id=22825
|
|
/* TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail22825a.d(10): Error: positive integer argument expected following `#line`
|
|
fail_compilation/fail22825a.d(11): Error: declaration expected, not `42`
|
|
---
|
|
*/
|
|
#line /*
|
|
multi-line comment
|
|
*/
|
|
42
|