dmd/compiler/test/compilable/ice20092.d
2022-07-09 18:53:07 +02:00

9 lines
101 B
D

void foo()
{
(void[1]).init.front;
}
void front(T)(T[] a)
{
static assert(is(T == void));
}