]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/fail_compilation/fail5851.d
d: Synchronize testsuite with upstream dmd
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail5851.d
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail5851.d(11): Error: alias this is not reachable as `Foo` already converts to `object.Object`
5 ---
6 */
7
8 class Foo
9 {
10 Object o;
11 alias o this;
12 }
13
14 void main()
15 {
16 }