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 | 965b0e3106c1318750909eeb65ea798fd31fbc26 (patch) | |
tree | bb0fe5770c6b21e71c917b57fde6d18b6d658778 /clang/test/Parser/cxx-exception-spec.cpp | |
parent | 5093578471ff811af5c512093b422daeee30444f (diff) | |
download | bcm5719-llvm-965b0e3106c1318750909eeb65ea798fd31fbc26.tar.gz bcm5719-llvm-965b0e3106c1318750909eeb65ea798fd31fbc26.zip |
Parser support for noexcept specifications.
llvm-svn: 127086
Diffstat (limited to 'clang/test/Parser/cxx-exception-spec.cpp')
-rw-r--r-- | clang/test/Parser/cxx-exception-spec.cpp | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/clang/test/Parser/cxx-exception-spec.cpp b/clang/test/Parser/cxx-exception-spec.cpp deleted file mode 100644 index e6c3c757f01..00000000000 --- a/clang/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(); |