aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/idempotency-lazy-vals.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/disabled/macro/run/idempotency-lazy-vals.scala')
-rw-r--r--tests/disabled/macro/run/idempotency-lazy-vals.scala27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/disabled/macro/run/idempotency-lazy-vals.scala b/tests/disabled/macro/run/idempotency-lazy-vals.scala
new file mode 100644
index 000000000..cb757f1ab
--- /dev/null
+++ b/tests/disabled/macro/run/idempotency-lazy-vals.scala
@@ -0,0 +1,27 @@
+import scala.reflect.runtime.universe._
+import scala.reflect.runtime.{currentMirror => cm}
+import scala.tools.reflect.{ToolBox, ToolBoxError}
+import scala.tools.reflect.Eval
+
+object Test extends dotty.runtime.LegacyApp {
+ val lazee = reify {
+ class C {
+ lazy val x = 2
+ implicit lazy val y = 3
+ }
+ val c = new C()
+ import c._
+ x * implicitly[Int]
+ }
+ println(lazee.eval)
+ val tb = cm.mkToolBox()
+ val tlazee = tb.typecheck(lazee.tree)
+ println(tlazee)
+ val rtlazee = tb.untypecheck(tlazee)
+ try {
+ println(tb.eval(rtlazee))
+ } catch {
+ // this is the current behaviour, rather than the desired behavior; see SI-5466
+ case _: ToolBoxError => println("error!")
+ }
+}