commit | 7dc813462dd9fd3f6f4296f896a12de14264fef8 | [log] [tgz] |
---|---|---|
author | Sebastian Redl <sebastian.redl@getdesigned.at> | Wed Apr 29 17:30:04 2009 +0000 |
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | Wed Apr 29 17:30:04 2009 +0000 |
tree | ef3f4354bdb9ebc59c51598c6ed9a801a30a7745 | |
parent | 552333cfa9c91d3be656699dacf7c5e98e875ee8 [diff] [blame] |
Have the parser communicate the exception specification to the action. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70389 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Parser/cxx-exception-spec.cpp b/test/Parser/cxx-exception-spec.cpp index b2203c9..0a87ab7 100644 --- a/test/Parser/cxx-exception-spec.cpp +++ b/test/Parser/cxx-exception-spec.cpp
@@ -13,3 +13,5 @@ class Class { void foo() throw (X, Y) { } }; + +void (*fptr)() throw();