From 986872800e1a7314b3f31f52cc389f62dc5b447a Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Thu, 8 Feb 2024 18:56:29 -0500 Subject: [PATCH] Tests/AK: Add a test for the array ctor deduction guide --- Tests/AK/TestArray.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/AK/TestArray.cpp b/Tests/AK/TestArray.cpp index 12f8ce3575..6a71d324fb 100644 --- a/Tests/AK/TestArray.cpp +++ b/Tests/AK/TestArray.cpp @@ -19,7 +19,7 @@ static constexpr int constexpr_sum(ReadonlySpan const span) TEST_CASE(compile_time_constructible) { - constexpr Array array = { 0, 1, 2, 3 }; + constexpr Array array = { 0, 1, 2, 3 }; static_assert(array.size() == 4); }