From 886b670d95c55bf54696425213c7265001ade161 Mon Sep 17 00:00:00 2001 From: Math <175355178+maffeus@users.noreply.github.com> Date: Thu, 27 Feb 2025 13:16:59 -0300 Subject: [PATCH] Add `DOES_NOT_PASS_NEW_SOLVER_GUARD` back I thought this test case was related, but I guess it's a different issue? --- tests/TypeInfer.singletons.test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/TypeInfer.singletons.test.cpp b/tests/TypeInfer.singletons.test.cpp index 7b4b5ee3..2d07f900 100644 --- a/tests/TypeInfer.singletons.test.cpp +++ b/tests/TypeInfer.singletons.test.cpp @@ -171,6 +171,8 @@ TEST_CASE_FIXTURE(Fixture, "overloaded_function_resolution_singleton_parameters" TEST_CASE_FIXTURE(Fixture, "overloaded_function_call_with_singletons_mismatch") { + DOES_NOT_PASS_NEW_SOLVER_GUARD(); + CheckResult result = check(R"( function f(g: ((true, string) -> ()) & ((false, number) -> ())) g(true, 37)