blob: 456ef0de7f57e9b084b3c08ccf6811a8f7ae0399 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail6561.d(9): Error: undefined identifier `x`
---
*/
struct S
{
alias x this; // should cause undefined identifier error
}
void main()
{
}