d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail22134.d
blob5a4933ef325e188b9dfa184ebe5e47adbdf653a1
1 // https://issues.dlang.org/show_bug.cgi?id=22134
2 /* REQUIRED_ARGS: -de
3 TEST_OUTPUT:
4 ---
5 fail_compilation/fail22134.d(12): Deprecation: `this.arr[i]` has no effect
6 ---
7 */
8 struct StackBuffer
10 auto opIndex(size_t i)
12 return arr[i];
15 private:
16 void[] arr;