blob: 4150eaf0e758a85883fe5f167a1eff3314ffd067 [file] [log] [blame]
module imports.test39a;
extern (C) int printf (const char*, ...);
class Test (T)
{
final void show (in T[] msg)
{
printf ("%.*s\n", cast(int)msg.length, msg.ptr);
}
}
Test!(char) Global;