diff --git a/clang/test/AST/Interp/functions.cpp b/clang/test/AST/Interp/functions.cpp index 4b81e7d6be3b7..06edcdeffa705 100644 --- a/clang/test/AST/Interp/functions.cpp +++ b/clang/test/AST/Interp/functions.cpp @@ -10,7 +10,7 @@ static_assert(gimme5() == 5, ""); template constexpr T identity(T t) { - static_assert(true); + static_assert(true, ""); return t; } static_assert(identity(true), "");