diff --git a/clang/test/SemaTemplate/metafun-apply.cpp b/clang/test/SemaTemplate/metafun-apply.cpp index e81d1421ebe8..7bc971f24b59 100644 --- a/clang/test/SemaTemplate/metafun-apply.cpp +++ b/clang/test/SemaTemplate/metafun-apply.cpp @@ -14,9 +14,17 @@ struct add_reference { }; }; +struct bogus { + struct apply { + typedef int type; + }; +}; + template struct apply1 { - typedef typename MetaFun::template apply::type type; // expected-note{{in instantiation of template class 'struct add_reference::apply' requested here}} + typedef typename MetaFun::template apply::type type; // expected-note{{in instantiation of template class 'struct add_reference::apply' requested here}} \ + // expected-error{{'apply' following the 'template' keyword does not refer to a template}} \ + // FIXME: expected-error{{type 'MetaFun::template apply' cannot be used prior to '::' because it has no members}} }; int i; @@ -27,4 +35,9 @@ apply1::type fr = i; // expected-error{{non-const lvalue r void test() { apply1::type t; // expected-note{{in instantiation of template class 'struct apply1' requested here}} \ // FIXME: expected-error{{unexpected type name 'type': expected expression}} + + apply1::type t2; // expected-note{{in instantiation of template class 'struct apply1' requested here}} \ + // FIXME: expected-error{{unexpected type name 'type': expected expression}} } + +