summaryrefslogtreecommitdiff
path: root/test/files/pos/t8325.scala
blob: af33ee7bb3ba38ae2e1f84d8b3e09efe6d5e8e76 (plain) (blame)
1
2
3
4
5
6
7
8
9
trait Test {
  type +[A, B] = (A, B)
  type *[A, B] = (A, B)

  type X[A, B] = A + B
  type Y[A, B] = A * B
  type Z[A, B] = A `*` B
}