From: Argyrios Kyrtzidis Date: Fri, 22 Apr 2011 01:18:40 +0000 (+0000) Subject: Fix crashing rdar://9122854 & http://llvm.org/PR9461. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=34f52d14742914bbaa975ce7de45957cccf256bc;p=clang Fix crashing rdar://9122854 & http://llvm.org/PR9461. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@129967 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/TreeTransform.h b/lib/Sema/TreeTransform.h index 39434c106e..dc96e59420 100644 --- a/lib/Sema/TreeTransform.h +++ b/lib/Sema/TreeTransform.h @@ -7216,8 +7216,10 @@ TreeTransform::TransformUnresolvedMemberExpr(UnresolvedMemberExpr *Old) // This can happen because of dependent hiding. if (isa(*I)) continue; - else + else { + R.clear(); return ExprError(); + } } // Expand using declarations. diff --git a/test/SemaCXX/PR9461.cpp b/test/SemaCXX/PR9461.cpp new file mode 100644 index 0000000000..e24bd4d35a --- /dev/null +++ b/test/SemaCXX/PR9461.cpp @@ -0,0 +1,32 @@ +// RUN: %clang_cc1 -fsyntax-only -verify %s + +// Don't crash. + +templatestruct basic_string; + +typedef basic_string string; + + + +template +struct basic_string +{ +int us; +basic_string(const aT*,const oc&a=int()); + +int _S_construct(); + +int _S_construct(int); + +_S_construct(); // expected-error {{requires}} +}; + +template +basic_string<_CharT,_Traits,_Alloc>::basic_string(const _CharT*,const _Alloc&) +:us(_S_construct) +{string a;} + +struct runtime_error{runtime_error(string);}; + +struct system_error:runtime_error{ // expected-note {{to match}} expected-note {{specified here}} +system_error():time_error("" // expected-error 4 {{expected}} expected-error {{initializer}} expected-note {{to match}}