mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
9 lines
215 B
D
9 lines
215 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/pragmainline.d(8): Error: one boolean expression expected for `pragma(inline)`, not 3
|
|
---
|
|
*/
|
|
|
|
pragma(inline, 1,2,3) void bar();
|
|
pragma(inline, "string") void baz(); // works now
|