OSDN Git Service

gcc/cp/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / is_base_of_diagnostic.C
1 class A
2 { };
3
4 class B;
5
6 union C
7 { };
8
9 union D;
10
11 void f()
12 {
13   __is_base_of(A, B);  // { dg-error "incomplete type" }
14   __is_base_of(C, D);  
15 }