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

10 lines
255 B
D

// REQUIRED_ARGS: -profile
/*
TEST_OUTPUT:
---
fail_compilation/test11471.d(10): Error: `asm` statement is assumed to throw - mark it with `nothrow` if it does not
---
*/
void main() nothrow
{ asm { nop; } } // Error: asm statements are assumed to throw