aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/ext/is_base_of_incomplete-2.C
blob: 54862585d0995ba771c91d494ad0bcc8b40c42b0 (plain)
1
2
3
4
5
struct T;

int check1[__is_base_of(T, T) ? 1 : -1];
int check2[__is_base_of(T, const T) ? 1 : -1];
int check3[__is_base_of(volatile T, T) ? 1 : -1];