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

13 lines
170 B
D

// REQUIRED_ARGS: -o-
/*
TEST_OUTPUT:
---
fail_compilation/ice15317.d(11): Error: undefined identifier `fun`
---
*/
void main()
{
alias f = fun;
auto x1 = &f;
}