d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail192.d
blob96232a5758b61f6fd1e04b95b723be98e78717c2
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail192.d(15): Error: outer function context of `fail192.foo` is needed to `new` nested class `fail192.foo.DummyClass`
5 fail_compilation/fail192.d(26): Error: template instance `fail192.X!(DummyClass)` error instantiating
6 ---
7 */
9 // https://issues.dlang.org/show_bug.cgi?id=1336
10 // Internal error when trying to construct a class declared within a unittest from a templated class.
11 class X(T)
13 void bar()
15 auto t = new T;
19 void foo()
21 class DummyClass
25 //auto x = new X!(DummyClass);
26 X!(DummyClass) x;