diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2011-03-05 14:45:16 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2011-03-05 14:45:16 +0000 |
commit | 7acafd032e145dbdbbed9274ca57ec2c86b912bc (patch) | |
tree | b73974f2c6ede1cebe101a1f5dd33ac75dacbcaa /test/Parser/cxx-exception-spec.cpp | |
parent | b6ab6c1ca733fda2302a1c5066bdfc6218c89e41 (diff) |
Parser support for noexcept specifications.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@127086 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Parser/cxx-exception-spec.cpp')
-rw-r--r-- | test/Parser/cxx-exception-spec.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/Parser/cxx-exception-spec.cpp b/test/Parser/cxx-exception-spec.cpp deleted file mode 100644 index e6c3c757f0..0000000000 --- a/test/Parser/cxx-exception-spec.cpp +++ /dev/null @@ -1,17 +0,0 @@ -// RUN: %clang_cc1 -fsyntax-only %s - -struct X { }; - -struct Y { }; - -void f() throw() { } - -void g(int) throw(X) { } - -void h() throw(X, Y) { } - -class Class { - void foo() throw (X, Y) { } -}; - -void (*fptr)() throw(); |