aboutsummaryrefslogblamecommitdiff
path: root/tests/neg/t1292.scala
blob: de74dc159eafb772217a9b4e2cf92aa665443436 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                   
                                                          








                                                                            
                                                     
                                                                                        





















                                                         
trait Foo[T <: Foo[T, Enum], Enum <: Enumeration] {
  type StV = Enum#Value // error: Enum is not a legal path
  type Meta = MegaFoo[T, Enum]

  type Slog <: Enumeration

  def getSingleton: Meta
}

trait MegaFoo[T <: Foo[T, Enum], Enum <: Enumeration] extends Foo[T, Enum] {
  def doSomething(what: T, misc: StV, dog: Meta#Event) = None
    // old-error: Meta is not a valid prefix for '#'.
    // The error is correct. Meta is not stable, and it has an abstract type member Slog
  abstract class Event
  object Event

  def stateEnumeration: Slog
  def se2: Enum
}

object E extends Enumeration {
  val A = Value
  val B = Value
}

class RFoo extends Foo[RFoo, E.type] {
  def getSingleton = MegaRFoo

  type Slog = E.type
}

object MegaRFoo extends RFoo with MegaFoo[RFoo, E.type] {
  def stateEnumeration = E
  def se2 = E
}