]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/fail_compilation/fail142.d
Add D front-end, libphobos library, and D2 testsuite.
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail142.d
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail142.d(20): Error: cannot create instance of abstract class B
5 fail_compilation/fail142.d(20): function 'void test()' is not implemented
6 ---
7 */
8
9 class A
10 {
11 abstract void test() {}
12 }
13
14 class B : A
15 {
16 }
17
18 void main()
19 {
20 B b = new B();
21 }