diff --git a/docs/eager-inference-annotations-for-polymorphic-types.md b/docs/eager-inference-annotations-for-polymorphic-types.md index 74455ed..a20fc60 100644 --- a/docs/eager-inference-annotations-for-polymorphic-types.md +++ b/docs/eager-inference-annotations-for-polymorphic-types.md @@ -48,6 +48,7 @@ A polymorphic function's arguments marked with type `T!` will not contribute to ```luau function test(first: T, second: T, third: T!): T + return first end test(1, "string", true) -- TypeError: Type `boolean` could not be converted into `number | string`