foo()1 void foo() 2 { 3 (void[1]).init.front; 4 } 5 front(T)6 void front(T)(T[] a) 7 { 8 static assert(is(T == void)); 9 } 10 11