aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t8611b.scala
blob: 75114c2ae39d4c016bc6bbdd5f7225a30e231c72 (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
sealed trait KrafsDescription

abstract class NotWorkingEnum extends Enumeration {

  type ExtendedValue = Value with KrafsDescription

  def Enum(inDescription: String): ExtendedValue = {
    new Val(nextId) with KrafsDescription {
    }
  }
}

abstract class WorkingEnum extends Enumeration {

  type ExtendedValue = Value

  def Enum(inDescription: String): ExtendedValue = {
    new Val(nextId) {
    }
  }
}

object NotWorkingTab extends NotWorkingEnum {
  val a = Enum("A")
  val b = Enum("B")
}

object WorkingTab extends WorkingEnum {
  val a = Enum("A")
  val b = Enum("B")
}

object Test extends dotty.runtime.LegacyApp {
  testGris()
  testWorking()

  def testGris(): Unit = {
    val pipp = NotWorkingTab.b
    pipp match {
      case NotWorkingTab.a => ???
      case NotWorkingTab.b =>
      case _ => ???
    }
  }

  def testWorking(): Unit = {
    val stuff = WorkingTab.a
    stuff match {
      case WorkingTab.a =>
      case WorkingTab.b => ???
      case _ => ???
    }
  }
}