Generic type pack has to be referenced by generic type pack name (with ...)

This commit is contained in:
Vyacheslav Egorov 2021-08-09 20:39:04 +03:00
parent db89abbeac
commit 6dcdf99027

View file

@ -50,7 +50,7 @@ Default type parameter values are also allowed for type packs:
```lua
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
type D<T..., U... = T...> -- ok
```
---