MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail19336.d
blobfc15be5784f44155292f647341e44f56cc8bce29
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail19336.d(14): Error: template instance `Template!()` template `Template` is not defined
5 fail_compilation/fail19336.d(14): Error: circular reference to `fail19336.Foo.a`
6 fail_compilation/fail19336.d(17): Error: circular reference to `fail19336.b`
7 ---
8 */
10 // https://issues.dlang.org/show_bug.cgi?id=19336
12 struct Foo
14 Template!() a(a.x);
17 int b(b.x);