mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
22 lines
230 B
D
22 lines
230 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice12581.d(21): Error: undefined identifier `undef`
|
|
---
|
|
*/
|
|
|
|
struct S
|
|
{
|
|
int[3] a;
|
|
alias a this;
|
|
}
|
|
struct T
|
|
{
|
|
S s;
|
|
alias s this;
|
|
}
|
|
void main()
|
|
{
|
|
T x;
|
|
x[] = (undef = 1);
|
|
}
|