fix: add test case for 645 medium diff (#4921)

This commit is contained in:
Li Kui 2021-12-06 00:54:43 +08:00 committed by GitHub
parent e39012d86d
commit ef5b9262dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,5 +11,6 @@ type Bar = {
}
type cases = [
Expect<Equal<Diff<Foo, Bar>, { gender: number }>>
Expect<Equal<Diff<Foo, Bar>, { gender: number }>>,
Expect<Equal<Diff<Bar,Foo>, { gender: number }>>
]