view gcc/testsuite/gdc.test/fail_compilation/diag15669.d @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 1830386684a0
children
line wrap: on
line source

/*
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];
}