d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail15068.d
blobca555b0a2f22d6e85da918f28d13b328a71375fe
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail15068.d(17): Error: `T!int` is not a valid template instance, because `T` is not a template declaration but a type (`T == int`)
5 fail_compilation/fail15068.d(13): Error: template instance `fail15068.Stuff!int` error instantiating
6 ---
7 */
9 // https://issues.dlang.org/show_bug.cgi?id=15068
11 void main()
13 Stuff!int s;
15 struct Stuff(T)
17 T!int var;