d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail7234.d
blobeb5ec7a590def94469b2d1a2452ba97d459bb6e0
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail7234.d(14): Error: no property `empty` for type `Contract*`, perhaps `import std.range;` is needed?
5 ---
6 */
8 struct Contract {
9 void opDispatch()(){}
12 void foo()
14 Contract* r; if (r.empty) {}