aboutsummaryrefslogblamecommitdiff
path: root/tests/untried/pos/t532.scala
blob: 9604c8afc65a3c69e2d5462737291a7540743f5c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                       
import scala.reflect.runtime.universe._

object Test extends App {
  def titi: Unit = {
    var truc = 0
    val tata = reify{() => {
      truc = truc + 6
    }}
    ()
  }
}