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

15 lines
200 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail2350.d(8): Error: function `fail2350.test2350` naked assembly functions with contracts are not supported
---
*/
void test2350()
in
{
}
do
{
asm { naked; }
}