MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice8309.d
blob2446914477a177077658cddc7d7f3ef1f3a2940e
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/ice8309.d(10): Error: incompatible types for `(__lambda1) : (__lambda2)`: `double function() pure nothrow @nogc @safe` and `int function() pure nothrow @nogc @safe`
5 ---
6 */
8 void main()
10 auto x = [()=>1.0, ()=>1];