summaryrefslogtreecommitdiff
path: root/test/pending/pos/t010/Presentations.scala
blob: ee2d94162fe8fed647f84dc550400264f4fadd67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package pkg1
trait Presentations {
   trait ProjectImpl {
     trait FileImpl
     protected def lockTyper[T](f : => T) = {
       if (this == null) None
       else Some(f)
     }
   }
}