aboutsummaryrefslogtreecommitdiff
path: root/test/Parser/cxx-exception-spec.cpp
diff options
context:
space:
mode:
authorSebastian Redl <sebastian.redl@getdesigned.at>2009-04-29 17:30:04 +0000
committerSebastian Redl <sebastian.redl@getdesigned.at>2009-04-29 17:30:04 +0000
commit7dc813462dd9fd3f6f4296f896a12de14264fef8 (patch)
treeef3f4354bdb9ebc59c51598c6ed9a801a30a7745 /test/Parser/cxx-exception-spec.cpp
parent552333cfa9c91d3be656699dacf7c5e98e875ee8 (diff)
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
Diffstat (limited to 'test/Parser/cxx-exception-spec.cpp')
-rw-r--r--test/Parser/cxx-exception-spec.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Parser/cxx-exception-spec.cpp b/test/Parser/cxx-exception-spec.cpp
index b2203c96df..0a87ab7023 100644
--- a/test/Parser/cxx-exception-spec.cpp
+++ b/test/Parser/cxx-exception-spec.cpp
@@ -13,3 +13,5 @@ void h() throw(X, Y) { }
class Class {
void foo() throw (X, Y) { }
};
+
+void (*fptr)() throw();