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