Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:BaseA

1622 template<typename T> struct BaseA { T a;  };
1623 template<typename T> struct DerivedB : BaseA<T> { };
1652 { int arr[T(__is_base_of(BaseA<int>, DerivedB<int>))]; }
1653 { int arr[F(__is_base_of(DerivedB<int>, BaseA<int>))]; }
1673 isBaseOfT<BaseA<int>, DerivedB<int> >();
1674 isBaseOfF<DerivedB<int>, BaseA<int> >();