summaryrefslogblamecommitdiff
path: root/test/disabled/run/code.scala
blob: 70749432063af787cc4b232de7290feb7a6af08c (plain) (tree)
































                                                                                      
import scala.tools.partest.utils.CodeTest

case class Element(name: String)

object Test extends App {
  case class InnerElement(name: String)
  def foo[T](ys: List[T]) = {
    val fun: reflect.Code[Int => Int] = x => x + ys.length
    fun
  }
  CodeTest(foo(List(2)), args)
  CodeTest({() => val e = Element("someName"); e}, args)
//  CodeTest({() => val e = InnerElement("someName"); e}, args) // (does not work yet)
  def titi() = {
    var truc = 0
    CodeTest(() => {
      truc = 6
    }, args)
  }
  def tata(): Unit = {
    var truc = 0
    CodeTest(() => {
      truc = truc + 6
    }, args)
  }
  titi()
  tata()
}