add return statement

This commit is contained in:
Ardi 2025-03-07 09:03:11 -06:00 committed by GitHub
parent b83c473db5
commit 1fee95b001
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -48,6 +48,7 @@ A polymorphic function's arguments marked with type `T!` will not contribute to
```luau
function test<T>(first: T, second: T, third: T!): T
return first
end
test(1, "string", true) -- TypeError: Type `boolean` could not be converted into `number | string`