mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
15 lines
200 B
D
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; }
|
|
}
|