MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail250.d
blobc6c08f79b81c496fec3cc620e8fb4343fb524489
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail250.d(10): Error: constructor `fail250.A.this` default constructor for structs only allowed with `@disable`, no body, and no parameters
5 ---
6 */
8 struct A
10 this() {}
13 void main()
15 auto a = A();