summaryrefslogtreecommitdiffstats
path: root/clang/test/SemaCXX
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2011-06-24 19:59:27 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2011-06-24 19:59:27 +0000
commitd8a2771109d5325adba3acbf06dbb0987162f7fe (patch)
treead7b047d535754a28d88c643f0210dcfe8e517f6 /clang/test/SemaCXX
parent018970216c9fce84c3d62cf8a0ca8583f1690ce9 (diff)
downloadbcm5719-llvm-d8a2771109d5325adba3acbf06dbb0987162f7fe.tar.gz
bcm5719-llvm-d8a2771109d5325adba3acbf06dbb0987162f7fe.zip
Only do delayed diagnostics if there were no errors when parsing the decl.
Fixes crash in http://llvm.org/PR10109 & rdar://9584039. llvm-svn: 133816
Diffstat (limited to 'clang/test/SemaCXX')
-rw-r--r--clang/test/SemaCXX/nested-name-spec.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/clang/test/SemaCXX/nested-name-spec.cpp b/clang/test/SemaCXX/nested-name-spec.cpp
index fef70931717..8ba02fe242e 100644
--- a/clang/test/SemaCXX/nested-name-spec.cpp
+++ b/clang/test/SemaCXX/nested-name-spec.cpp
@@ -266,3 +266,22 @@ namespace rdar7980179 {
namespace alias = A;
double *dp = (alias::C*)0; // expected-error{{cannot initialize a variable of type 'double *' with an rvalue of type 'alias::C *'}}
+
+// http://llvm.org/PR10109
+namespace PR10109 {
+template<typename T>
+struct A {
+protected:
+ struct B;
+ struct B::C; // expected-error {{requires a template parameter list}} \
+ // expected-error {{no struct named 'C'}}
+};
+
+template<typename T>
+struct A2 {
+protected:
+ struct B;
+};
+template <typename T>
+struct A2<T>::B::C; // expected-error {{no struct named 'C'}}
+}
OpenPOWER on IntegriCloud