aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t5276_2b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t5276_2b.scala')
-rw-r--r--tests/pending/run/t5276_2b.scala13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/pending/run/t5276_2b.scala b/tests/pending/run/t5276_2b.scala
deleted file mode 100644
index cccc76a2d..000000000
--- a/tests/pending/run/t5276_2b.scala
+++ /dev/null
@@ -1,13 +0,0 @@
-import scala.reflect.runtime.universe._
-import scala.tools.reflect.Eval
-
-object Test extends dotty.runtime.LegacyApp {
- reify {
- class C {
- implicit lazy val x = 2
- def y = implicitly[Int]
- }
-
- println(new C().y)
- }.eval
-}