mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
15 lines
216 B
D
15 lines
216 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/diag15669.d(14): Error: variable `__b_field_0` cannot be read at compile time
|
|
---
|
|
*/
|
|
|
|
alias AliasSeq(A ...) = A;
|
|
|
|
void foo()
|
|
{
|
|
AliasSeq!int a;
|
|
AliasSeq!int b;
|
|
a[b];
|
|
}
|