MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / diag9861.d
blob53faea189e9e3ec29b1e45cb98254ab8e90421b1
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/diag9861.d(8): Error: no property `epsilon` for type `int`
5 fail_compilation/diag9861.d(9): while looking for match for `Foo!int`
6 ---
7 */
8 struct Foo(T, real x = T.epsilon) {}
9 Foo!(int) q;