MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail299.d
blob832a9a8d193cdb0ce26e55f20d98377f7afd756e
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail299.d(14): Error: initializer provided for struct `Foo` with no fields
5 ---
6 */
8 struct Foo {}
10 void foo (Foo b, void delegate ()) {}
12 void main ()
14 foo(Foo(1), (){});