MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail7861.d
bloba24eb95fbdf452f62e054ed71ee74ed58485ae98
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail7861.d(18): Error: no property `nonexistent` for type `test.B`
5 fail_compilation/fail7861.d(14): struct `B` defined here
6 ---
7 */
8 module test;
10 mixin template A() {
11 import test;
14 struct B {
15 mixin A!();
18 enum C = B.nonexistent;