From 5208aba6ac336b3a3e1ab79d5b5cc45b11565529 Mon Sep 17 00:00:00 2001 From: JohnnyMorganz Date: Sun, 7 Jul 2024 13:50:48 +0200 Subject: [PATCH] Actually fix compilation --- tests/Generalization.test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Generalization.test.cpp b/tests/Generalization.test.cpp index 901461ae..dabdf258 100644 --- a/tests/Generalization.test.cpp +++ b/tests/Generalization.test.cpp @@ -112,7 +112,7 @@ TEST_CASE_FIXTURE(GeneralizationFixture, "dont_traverse_into_class_types_when_ge { auto [propTy, _] = freshType(); - TypeId cursedClass = arena.addType(ClassType{"Cursed", {{"oh_no", Property::readonly(propTy)}}, std::nullopt, std::nullopt, {}, {}, ""}); + TypeId cursedClass = arena.addType(ClassType{"Cursed", {{"oh_no", Property::readonly(propTy)}}, std::nullopt, std::nullopt, {}, {}, "", {}}); auto genClass = generalize(cursedClass); REQUIRE(genClass);