mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
15 lines
192 B
D
15 lines
192 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail12635.d(13): Error: Cannot generate a segment prefix for a branching instruction
|
|
---
|
|
*/
|
|
|
|
void foo()
|
|
{
|
|
asm
|
|
{
|
|
L1:
|
|
jmp DS:L1;
|
|
}
|
|
}
|