d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / diag6707.d
blob70fea4fcf681005beeda210a3ced3c300aadfd68
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/diag6707.d(17): Error: mutable method `diag6707.Foo.value` is not callable using a `const` object
5 fail_compilation/diag6707.d(13): Consider adding `const` or `inout` here
6 ---
7 */
9 module diag6707;
11 struct Foo
13 @property bool value() { return true; }
15 void test() const
17 auto x = value;