summaryrefslogblamecommitdiff
path: root/test/files/pos/t531.scala
blob: d53539f34f8a6220cdc83b6a5e495c71f3ff489d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                       
 
                         

                
                            
              
      

      
 
import scala.reflect.runtime.universe._

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