Solved: 43 - Concepts

This commit is contained in:
2026-08-22 11:33:04 +03:00
parent 8fa5630858
commit 57693c5de2
3 changed files with 15 additions and 12 deletions
+1 -1
View File
@@ -15,5 +15,5 @@ TEST(Concepts, UppercaseCopy) {
}
TEST(Concepts, SumIntegral) {
EXPECT_EQ(cpp20::sum_integral({1, 2, 3}), 6);
EXPECT_EQ(cpp20::sum_integral<int>({1, 2, 3}), 6);
}