From: Sebastian Redl Date: Fri, 10 Sep 2010 21:03:58 +0000 (+0000) Subject: Add another small test case. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c574959e7bb9b0fae6fcf07deb6f2ba3f15ec3b1;p=clang Add another small test case. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@113628 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CXX/expr/expr.unary/expr.unary.noexcept/sema.cpp b/test/CXX/expr/expr.unary/expr.unary.noexcept/sema.cpp index e4025d9e2f..e4d1537cdc 100644 --- a/test/CXX/expr/expr.unary/expr.unary.noexcept/sema.cpp +++ b/test/CXX/expr/expr.unary/expr.unary.noexcept/sema.cpp @@ -12,6 +12,7 @@ void simple() { P(sizeof(0)); P(static_cast(0)); N(throw 0); + N((throw 0, 0)); } void nospec();