dmd/compiler/test/fail_compilation/diag15235.d
2022-07-09 18:53:07 +02:00

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
}
}