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

14 lines
163 B
D

/*
TEST_OUTPUT:
---
fail_compilation/diag6717.d(12): Error: end of instruction expected, not `h`
---
*/
void main()
{
asm
{
mov AX, 12h ;
}
}