summaryrefslogblamecommitdiff
path: root/test/files/neg/t712.scala
blob: 6f2627743fb4b3f9e512ffe2448f632f2d648c83 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                    
                     

                        
trait A {
  type Node <: NodeImpl;
  implicit def coerce(n : NodeImpl) = n.self;
  trait NodeImpl {
    def self : Node;
  }
}
trait B extends A {
  type Parent <: ParentImpl;
  implicit def coerce(p : ParentImpl) = p.self;
  trait ParentImpl;
  type Symbol;
  trait SymbolImpl {
    def scope : Int;
  }
  implicit def coerceSym(sym : Symbol) : SymbolImpl;
  var s : Symbol = _;
  val s_scope = s.scope;
}