mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
12 lines
199 B
D
12 lines
199 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail4269g.d(10): Error: alias `fail4269g.Xg` cannot alias an expression `d[1]`
|
|
---
|
|
*/
|
|
|
|
int[2] d;
|
|
static if(is(typeof(Xg.init))) {}
|
|
alias d[1] Xg;
|
|
|
|
void main() {}
|