d: Merge dmd. druntime e770945277, phobos 6d6e0b9b9
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / diag20268.d
blob0653490267005f5440a8fe1db36406409007055c
1 // https://issues.dlang.org/show_bug.cgi?id=20268
3 /*
4 TEST_OUTPUT:
5 ---
6 fail_compilation/diag20268.d(12): Error: template `__lambda4` is not callable using argument types `!()(int)`
7 fail_compilation/diag20268.d(11): Candidate is: `__lambda4(__T1, __T2)(x, y)`
8 ---
9 */
11 alias f = (x,y) => true;
12 auto x = f(1);