summaryrefslogblamecommitdiff
path: root/test/files/pos/protected-t1010.scala
blob: 8575ddaaf78d86b12cd1239e4b6dd04120b4321b (plain) (tree)


























                                                               
/** Check protected accessors involving polymorphic methods. */

package pkg2 {

trait PresentationsX extends pkg1.Presentations {
   trait ProjectImpl extends super.ProjectImpl {
     trait FileImpl extends super.FileImpl {
       lockTyper(Console.println)
     }
   }
}

} // pkg2

package pkg1 {

trait Presentations {
   trait ProjectImpl {
     trait FileImpl
     protected def lockTyper[T](f : => T) = {
       if (this == null) None
       else Some(f)
     }
   }
}

} // pkg1