mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
14 lines
184 B
D
14 lines
184 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail6561.d(9): Error: undefined identifier `x`
|
|
---
|
|
*/
|
|
struct S
|
|
{
|
|
alias x this; // should cause undefined identifier error
|
|
}
|
|
|
|
void main()
|
|
{
|
|
}
|