xxxxxxxxxx
import std;
void fun1(const(int[]) a) { writeln("const(int[])"); }
void fun1(const(int)[] a) { writeln("const(int)[]"); }
void fun2(T)(T a) { writeln(T.stringof); }
void main() {
const(int[]) a;
fun1(a);
fun2(a);
}