aboutsummaryrefslogtreecommitdiff
path: root/tests/patmat/t9657.scala
blob: f9769574ed355a72fb36a46d23d4220f90ac6548 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
sealed trait PowerSource

case object Petrol extends PowerSource

case object Pedal extends PowerSource

sealed abstract class Vehicle {
  type A <: PowerSource
}

case object Bicycle extends Vehicle {
  type A = Pedal.type
}

case class Bus(fuel: Int) extends Vehicle {
  type A = Petrol.type
}

case class Car(fuel: Int) extends Vehicle {
  type A = Petrol.type
}

class Test {
  def refuel[P <: Petrol.type](vehicle: Vehicle {type A = P} ): Vehicle = vehicle match {
    case Car(_) => Car(100)
    case Bus(_) => Bus(100)
  }

  def refuel2[P <: Petrol.type](vehicle: Vehicle {type A = P} ): Vehicle = vehicle match {
    case Car(_) => Car(100)
  }

  def foo1(vehicle: Vehicle {type A <: Petrol.type} ): Vehicle = vehicle match {
    case Car(_) => Car(100)
    case Bus(_) => Bus(100)
  }

  def foo2(vehicle: Vehicle {type A <: Petrol.type} ): Vehicle = vehicle match {
    case Car(_) => Car(100)
  }

  type P = Petrol.type

  def bar1(vehicle: Vehicle {type A <: P} ): Vehicle = vehicle match {
    case Car(_) => Car(100)
    case Bus(_) => Bus(100)
  }

  def bar2(vehicle: Vehicle {type A <: P} ): Vehicle = vehicle match {
    case Car(_) => Car(100)
  }

  def qux1[P <: Petrol.type](vehicle: Vehicle {type A <: P} ): Vehicle = vehicle match {
    case Car(_) => Car(100)
    case Bus(_) => Bus(100)
  }

  def qux2[P <: Petrol.type](vehicle: Vehicle {type A <: P} ): Vehicle = vehicle match {
    case Car(_) => Car(100)
  }

}