Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[New solver --!strict] blocked type when using table.isfrozen on a generic refined to table #1585

Open
imnerolin opened this issue Dec 22, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@imnerolin
Copy link

imnerolin commented Dec 22, 2024

local function freeze <T>(v: T): T
	if type(v) ~= "table" then
		return v
	end

        -- typeof(v) is T & table
	
	if not table.isfrozen(v) then -- Operator 'not' could not be applied to type *blocked-xxxxx*
		table.freeze(v)
	end
	
	return v
end

im only really reporting this because its a blocked type so that definitely means some bug happened somewhere
i saw this when going over script analysis in my place

@imnerolin imnerolin added the bug Something isn't working label Dec 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Development

No branches or pull requests

1 participant