From 2382ff2ae3252cd3d70f49d1ac3e171b82196a78 Mon Sep 17 00:00:00 2001 From: Hunter Goldstein Date: Mon, 14 Apr 2025 15:38:28 -0700 Subject: [PATCH] Disable `LuauNonReentrantGeneralization` for `Linter/TableOperations` --- tests/Linter.test.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/Linter.test.cpp b/tests/Linter.test.cpp index 816c6f93..bf7bd756 100644 --- a/tests/Linter.test.cpp +++ b/tests/Linter.test.cpp @@ -10,6 +10,7 @@ LUAU_FASTFLAG(LuauSolverV2); LUAU_FASTFLAG(LintRedundantNativeAttribute); LUAU_FASTFLAG(LuauDeprecatedAttribute); +LUAU_FASTFLAG(LuauNonReentrantGeneralization); using namespace Luau; @@ -1923,6 +1924,9 @@ print(foo:bar(2.0)) TEST_CASE_FIXTURE(BuiltinsFixture, "TableOperations") { + // FIXME: For now this flag causes a stack overflow on Windows. + ScopedFastFlag _{FFlag::LuauNonReentrantGeneralization, false}; + LintResult result = lint(R"( local t = {} local tt = {}