From 3244780a0fb49898f1ffd1982135c38f28789170 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Tue, 31 Mar 2009 20:07:16 +0000 Subject: [PATCH] Improve the dependent nested-name-specifier test a bit git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68136 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/SemaTemplate/metafun-apply.cpp | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/test/SemaTemplate/metafun-apply.cpp b/test/SemaTemplate/metafun-apply.cpp index e81d1421eb..7bc971f24b 100644 --- a/test/SemaTemplate/metafun-apply.cpp +++ b/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}} } + + -- 2.40.0