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

13 lines
188 B
Makefile

/*
TEST_OUTPUT:
---
fail_compilation/fail317.d(10): Error: function `fail317.I.f` has no function body with return type inference
---
*/
interface I
{
auto f()
in {}
out {}
}