mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
17 lines
302 B
D
17 lines
302 B
D
// REQUIRED_ARGS: -o- -fPIC
|
|
// DISABLED: win32 win64
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail13939.d(15): Error: cannot directly load global variable `val` with PIC or PIE code
|
|
---
|
|
*/
|
|
version(Windows) static assert(0);
|
|
void test1()
|
|
{
|
|
__gshared int val;
|
|
asm
|
|
{
|
|
mov EAX, val;
|
|
}
|
|
}
|