mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
13 lines
218 B
D
13 lines
218 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/diag15235.d(11): Error: cannot have two symbols in addressing mode
|
|
---
|
|
*/
|
|
|
|
void main()
|
|
{
|
|
asm {
|
|
mov [EBX+EBX+EBX], EAX; // prints the same error message 20 times
|
|
}
|
|
}
|