mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
16 lines
196 B
D
16 lines
196 B
D
// https://issues.dlang.org/show_bug.cgi?id=23816
|
|
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail23816.d(14): Error: opcode expected, not `NOP`
|
|
---
|
|
*/
|
|
|
|
void main()
|
|
{
|
|
asm
|
|
{
|
|
NOP;
|
|
}
|
|
}
|