d: Merge dmd. druntime e770945277, phobos 6d6e0b9b9
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail95.d
blob0e613363b0878553cef591d89ec8d0865b3577a7
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail95.d(19): Error: template `A` is not callable using argument types `!()(int)`
5 fail_compilation/fail95.d(11): Candidate is: `A(alias T)(T)`
6 ---
7 */
9 // https://issues.dlang.org/show_bug.cgi?id=142
10 // Assertion failure: '0' on line 610 in file 'template.c'
11 template A(alias T)
13 void A(T) { T = 2; }
16 void main()
18 int i;
19 A(i);
20 assert(i == 2);