mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
8 lines
171 B
D
8 lines
171 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/mangle1.d(8): Error: pragma `mangle` can only apply to a single declaration
|
|
---
|
|
*/
|
|
|
|
pragma(mangle, "_stuff_") __gshared { int x, y; }
|