d: Merge dmd. druntime e770945277, phobos 6d6e0b9b9
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice9284.d
blob1e87f0a141d9f0fddad0514b04b386de6d7b73c7
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/ice9284.d(14): Error: template `__ctor` is not callable using argument types `!()(int)`
5 fail_compilation/ice9284.d(12): Candidate is: `this()(string)`
6 fail_compilation/ice9284.d(20): Error: template instance `ice9284.C.__ctor!()` error instantiating
7 ---
8 */
10 class C
12 this()(string)
14 this(10);
15 // delegating to a constructor which not exists.
18 void main()
20 new C("hello");