aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/intersection.scala
blob: 48551920c31809a90b38b9fead306943f62f1b17 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                      


                            
object intersection {

  class A
  class B

  val x: A => Unit = ???
  val y: B => Unit = ???

  val z = if (???) x else y

  val a: A & B => Unit = z
  val b: (A => Unit) | (B => Unit) = z

  type needsA = A => Nothing
  type needsB = B => Nothing
}