From 965b0e3106c1318750909eeb65ea798fd31fbc26 Mon Sep 17 00:00:00 2001 From: Sebastian Redl Date: Sat, 5 Mar 2011 14:45:16 +0000 Subject: Parser support for noexcept specifications. llvm-svn: 127086 --- clang/test/Parser/cxx-exception-spec.cpp | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 clang/test/Parser/cxx-exception-spec.cpp (limited to 'clang/test/Parser/cxx-exception-spec.cpp') 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(); -- cgit v1.2.3