feat: add test case to 00191-medium-append-argument (#16753)

This commit is contained in:
elianli 2022-09-29 23:07:32 +08:00 committed by GitHub
parent 991cbf5fe0
commit 31df2efb7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,4 +9,6 @@ type Result2 = (x: undefined) => void
type cases = [
Expect<Equal<Case1, Result1>>,
Expect<Equal<Case2, Result2>>,
// @ts-expect-error
AppendArgument<unknown, undefined>,
]