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

13 lines
223 B
D

/*
TEST_OUTPUT:
---
fail_compilation/diag7747.d(8): Error: forward reference to inferred return type of function call `fact(n - 1)`
---
*/
auto fact(int n) { return n > 1 ? fact(n - 1) : 0; }
void main()
{
fact(1);
}