xxxxxxxxxx
import std.stdio;
string SomeFunc( T )() if( is( T : AT[], AT ) )
{
return AT.stringof;
}
void main()
writeln(SomeFunc!( int[] ));