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

16 lines
226 B
D

// REQUIRED_ARGS: -de
/*
TEST_OUTPUT:
---
fail_compilation/deprecate12979b.d(12): Error: `asm` statement is assumed to be impure - mark it with `pure` if it is not
---
*/
void foo() pure
{
asm
{
ret;
}
}