Update eager-inference-annotations-for-polymorphic-types.md

This commit is contained in:
Marcus 2025-03-07 14:51:48 +01:00 committed by GitHub
parent b995140a1e
commit 5308d81184
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -6,7 +6,7 @@ The RFC introduces a feature to annotate a polymorphic function signature to exp
## Motivation
The purpose of this feature is to prevent polymorphic types from widening into a union (e.g., number | string) when the function is called with different arguments, like in the case of `test(1, "a")`. Without the `!` annotation, the solver would infer `T` to be `number | string`, which is undesirable when the intention is to enforce strict type consistency across the function.
The purpose of this feature is to prevent polymorphic types from widening into (e.g., number | string) when the function is called with different arguments, like in the case of `test(1, "a")`. Without the `!` annotation, the solver would infer `T` to be `number | string`, which is undesirable when the intention is to enforce strict type consistency across the function.
```luau
function test<T>(a: T, b: T): T