]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/fail_compilation/diag6707.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / diag6707.d
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/diag6707.d(16): Error: mutable method diag6707.Foo.value is not callable using a const object
5 ---
6 */
7
8 module diag6707;
9
10 struct Foo
11 {
12 @property bool value() { return true; }
13
14 void test() const
15 {
16 auto x = value;
17 }
18 }