mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
20 lines
453 B
OpenEdge ABL
20 lines
453 B
OpenEdge ABL
/* TEST_OUTPUT:
|
|
---
|
|
fail_compilation/test23886.i(103): Error: "string" expected after `#ident`
|
|
fail_compilation/test23886.i(103): Error: no type for declarator before `#`
|
|
fail_compilation/test23886.i(104): Error: "string" expected after `#ident`
|
|
fail_compilation/test23886.i(105): Error: "string" expected after `#ident`
|
|
---
|
|
*/
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=23886
|
|
|
|
#line 100
|
|
|
|
#ident "abc"
|
|
|
|
#ident 7
|
|
#ident "def" x
|
|
#ident
|
|
|
|
void test() { }
|