diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-03-08 00:41:19 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-03-08 00:41:19 +0000 |
commit | 3681e58d8b61134d81be28ad19e89d2f54f38f19 (patch) | |
tree | 3496c918af923809ebd22717c627ca1b41b75090 /clang/test/SemaTemplate/instantiate-function-1.cpp | |
parent | 254bba409557a721b294f0ce064fb3e7744fc394 (diff) | |
download | bcm5719-llvm-3681e58d8b61134d81be28ad19e89d2f54f38f19.tar.gz bcm5719-llvm-3681e58d8b61134d81be28ad19e89d2f54f38f19.zip |
Revert r97925, it only contained the test updates not the actual fix.
llvm-svn: 97926
Diffstat (limited to 'clang/test/SemaTemplate/instantiate-function-1.cpp')
-rw-r--r-- | clang/test/SemaTemplate/instantiate-function-1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaTemplate/instantiate-function-1.cpp b/clang/test/SemaTemplate/instantiate-function-1.cpp index 7b4c53cfe0d..144c630fce5 100644 --- a/clang/test/SemaTemplate/instantiate-function-1.cpp +++ b/clang/test/SemaTemplate/instantiate-function-1.cpp @@ -194,7 +194,7 @@ template struct IndirectGoto0<int>; // expected-note{{instantiation}} template<typename T> struct TryCatch0 { void f() { try { - } catch (T t) { // expected-warning{{incomplete type}} \ + } catch (T t) { // expected-error{{incomplete type}} \ // expected-error{{abstract class}} } catch (...) { } |