mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
18 lines
371 B
D
18 lines
371 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/test9176.d(14): Error: forward reference to inferred return type of function call `get()`
|
|
fail_compilation/test9176.d(10): while evaluating: `static assert(!is(typeof(foo(S()))))`
|
|
---
|
|
*/
|
|
|
|
void foo(int x) {}
|
|
static assert(!is(typeof(foo(S()))));
|
|
|
|
struct S
|
|
{
|
|
auto get() { return get(); }
|
|
alias get this;
|
|
}
|
|
|
|
void main(){}
|