Remove return type pack annotation from allowed type pack default values,type annotation syntax doesn't allow that to be stand-alone

This commit is contained in:
Vyacheslav Egorov 2021-08-09 20:38:39 +03:00
parent f481a91af6
commit db89abbeac

View file

@ -48,10 +48,9 @@ type A<T, U = V, V = T> = ... -- not allowed
Default type parameter values are also allowed for type packs:
```lua
type A<T, U... = ...string> -- ok, variadic type pack
type B<T, U... = (number, number)> -- ok, type pack with two elements
type C<T, U... = string> -- ok, type pack with one element
type D<T..., U... = T> -- ok
type A<T, U... = ...string> -- ok, variadic type pack
type C<T, U... = string> -- ok, type pack with one element
type D<T..., U... = T> -- ok
```
---