]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/runnable/imports/test39a.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / runnable / imports / test39a.d
CommitLineData
b4c522fa
IB
1module imports.test39a;
2
3extern (C) int printf (const char*, ...);
4
5class Test (T)
6{
7 final void show (in T[] msg)
8 {
5fee5ec3 9 printf ("%.*s\n", cast(int)msg.length, msg.ptr);
b4c522fa
IB
10 }
11}
12
13Test!(char) Global;