summaryrefslogtreecommitdiff
path: root/test/files/pos/michel6.scala
blob: f312bf17963a0c3de1ac6b5da17f9918398c5c45 (plain) (blame)
1
2
3
4
5
6
object M {
   def f(x: Int): Unit = {}
 
   def g(): Int => Unit =
     if (0 == 0) f else g()
 }