luau icon indicating copy to clipboard operation
luau copied to clipboard

[New Solver] Function's parameters are unknown

Open natxnekk opened this issue 2 months ago • 0 comments

export type testTable = {
	test: (foo: string, bar: number) -> ()
}

return {

	test = function(foo, bar)
		--foo and bar are unknown here
	end,
	
} :: testTable

Possibly related to Issue 2002 version: 0.696.0.6960797

natxnekk avatar Nov 04 '25 15:11 natxnekk