Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fail6561.d
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
()
{
}