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 e4025d9e2ff0e707336574ed623a57b5ee670e92..e4d1537cdc184f2c31e477738c8e5495502f002b 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<int>(0));
   N(throw 0);
+  N((throw 0, 0));
 }
 
 void nospec();