blob: 25cd408b93976c86a7e470a7ec6e68e7f1f83367 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/diag9479.d(10): Error: undefined identifier `something_undefined`
---
*/
int delegate() bug9479()
{
return { return something_undefined; };
}