mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
9 lines
101 B
D
9 lines
101 B
D
void foo()
|
|
{
|
|
(void[1]).init.front;
|
|
}
|
|
|
|
void front(T)(T[] a)
|
|
{
|
|
static assert(is(T == void));
|
|
}
|