summaryrefslogtreecommitdiff
path: root/test/files/pos/sd219.scala
blob: 3c3f4962f0b9db6ebaafcf2d68545b20912c914f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class Global { class Name }

trait CommonPrintUtils {
  val global: Global 
  
  lazy val precedence: global.Name => Int = ???
}

trait CompilerProvider {  val global: Global = ??? }
    
class AbstractPrinter extends CommonPrintUtils with CompilerProvider