From 0eab51c38db24f445ee6d84486169e3e02888489 Mon Sep 17 00:00:00 2001 From: Sebastian Redl Date: Tue, 15 Mar 2011 20:45:42 +0000 Subject: [PATCH] Extend the noexcept expression test to test noexcept specification functions. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@127693 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CXX/expr/expr.unary/expr.unary.noexcept/sema.cpp | 4 ++++ 1 file changed, 4 insertions(+) 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 e776a8f3c1..28ed62c71e 100644 --- a/test/CXX/expr/expr.unary/expr.unary.noexcept/sema.cpp +++ b/test/CXX/expr/expr.unary/expr.unary.noexcept/sema.cpp @@ -20,6 +20,8 @@ void allspec() throw(...); void intspec() throw(int); void emptyspec() throw(); void nothrowattr() __attribute__((nothrow)); +void noexcept_true() noexcept; +void noexcept_false() noexcept(false); void call() { N(nospec()); @@ -27,6 +29,8 @@ void call() { N(intspec()); P(emptyspec()); P(nothrowattr()); + P(noexcept_true()); + N(noexcept_false()); } void (*pnospec)(); -- 2.40.0