1 // RUN: %clang_cc1 -fsyntax-only -verify %s
11 struct T1
: public T0
, public T
{ //expected-warning{{direct base 'T0' is inaccessible due to ambiguity:\n struct T1<struct A> -> T0\n struct T1<struct A> -> A -> T0}}
13 m0
= 0; // expected-error{{ambiguous conversion}}
17 struct A
: public T0
{ };
19 void f1(T1
<A
> *S
) { S
->f0(); } // expected-note{{instantiation of member function}} expected-note{{in instantiation of template class 'T1<A>' requested here}}
21 namespace rdar8635664
{