Add highlight tests for structural types

pull/481/head
ghostbuster91 2023-01-12 19:10:06 +07:00
parent 332a3bb0fc
commit bfa99af075
1 changed files with 9 additions and 0 deletions

@ -41,5 +41,14 @@ object Hello {
// ^constant
// ^type
}
type A = { def fly(): Unit }
// ^keyword.function
// ^method
// ^type
type A = B[({ type f[x] = M[S, x] })#f]
// ^keyword
// ^type.definition
}