aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/t5276_1b.scala
blob: 8f11bdc6e6c7f498c00cc7302c417abace2ef010 (plain) (blame)
1
2
3
4
5
6
7
8
9
import scala.reflect.runtime.universe._
import scala.tools.reflect.Eval

object Test extends dotty.runtime.LegacyApp {
  reify {
    implicit lazy val x = 2
    println(implicitly[Int])
  }.eval
}