MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / test15785b.d
blob910db18ab2d8bbc51937eaed73a56012c69f1f7a
1 // EXTRA_FILES: imports/test15785.d
2 /*
3 TEST_OUTPUT:
4 ---
5 fail_compilation/test15785b.d(14): Error: `imports.test15785.Base.T` is not visible from module `test15785b`
6 fail_compilation/test15785b.d(15): Error: `imports.test15785.Base.T` is not visible from module `test15785b`
7 fail_compilation/test15785b.d(16): Error: `imports.test15785.IBase2.T` is not visible from module `test15785b`
8 ---
9 */
10 import imports.test15785;
12 class Derived : Base, IBase2
14 typeof(super).T t;
15 Base.T t2;
16 IBase2.T t3;