From: Sebastian Redl Date: Sat, 17 Oct 2009 18:31:05 +0000 (+0000) Subject: Add a DR437 testcase, but disable it for now, since it fails. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e38050d47dc673b7edf1e4b4d2e3c822293a8cba;p=clang Add a DR437 testcase, but disable it for now, since it fails. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84345 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/SemaCXX/exception-spec.cpp b/test/SemaCXX/exception-spec.cpp index 9b2a07d796..56cc435f7d 100644 --- a/test/SemaCXX/exception-spec.cpp +++ b/test/SemaCXX/exception-spec.cpp @@ -185,3 +185,6 @@ void mfnptr() template struct TEx; // expected-note {{template is declared here}} void tf() throw(TEx); // expected-error {{implicit instantiation of undefined template}} + +// DR 437, class throws itself. FIXME: See Sema::CheckSpecifiedExceptionType. +//struct DR437 { void f() throw(DR437); };