aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t531.scala
blob: d18a5c8860fa42b348daec9bae3fa1e01a4bd81c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import scala.reflect.runtime.universe._

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