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

                             
                         

                
                            
              
      


      
import scala.reflect.mirror._

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