diff --git a/tests/TypeInfer.functions.test.cpp b/tests/TypeInfer.functions.test.cpp index b75a2ae9..b8d80743 100644 --- a/tests/TypeInfer.functions.test.cpp +++ b/tests/TypeInfer.functions.test.cpp @@ -58,24 +58,6 @@ TEST_CASE_FIXTURE(Fixture, "overload_resolution") CHECK(toString(t) == "(((number) -> string) & ((string) -> number)) -> (string, number)"); } -TEST_CASE_FIXTURE(Fixture, "overload_resolution_singleton_parameters") -{ - CheckResult result = check(R"( - type A = ("A") -> string - type B = ("B") -> number - - local function foo(f: A & B) - return f("A"), f("B") - end - )"); - LUAU_REQUIRE_NO_ERRORS(result); - TypeId t = requireType("foo"); - const FunctionType* fooType = get(requireType("foo")); - REQUIRE(fooType != nullptr); - - CHECK(toString(t) == "(((\"A\") -> string) & ((\"B\") -> number)) -> (string, number)"); -} - TEST_CASE_FIXTURE(Fixture, "tc_function") { CheckResult result = check("function five() return 5 end"); diff --git a/tests/TypeInfer.singletons.test.cpp b/tests/TypeInfer.singletons.test.cpp index 3d126e62..7b4b5ee3 100644 --- a/tests/TypeInfer.singletons.test.cpp +++ b/tests/TypeInfer.singletons.test.cpp @@ -151,6 +151,24 @@ TEST_CASE_FIXTURE(Fixture, "overloaded_function_call_with_singletons") LUAU_REQUIRE_NO_ERRORS(result); } +TEST_CASE_FIXTURE(Fixture, "overloaded_function_resolution_singleton_parameters") +{ + CheckResult result = check(R"( + type A = ("A") -> string + type B = ("B") -> number + + local function foo(f: A & B) + return f("A"), f("B") + end + )"); + LUAU_REQUIRE_NO_ERRORS(result); + TypeId t = requireType("foo"); + const FunctionType* fooType = get(requireType("foo")); + REQUIRE(fooType != nullptr); + + CHECK(toString(t) == "(((\"A\") -> string) & ((\"B\") -> number)) -> (string, number)"); +} + TEST_CASE_FIXTURE(Fixture, "overloaded_function_call_with_singletons_mismatch") { CheckResult result = check(R"(