aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/macro-enclosingowner-detectvar/Test_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/macro-enclosingowner-detectvar/Test_2.scala')
-rw-r--r--tests/pending/run/macro-enclosingowner-detectvar/Test_2.scala23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/pending/run/macro-enclosingowner-detectvar/Test_2.scala b/tests/pending/run/macro-enclosingowner-detectvar/Test_2.scala
deleted file mode 100644
index edc0eb654..000000000
--- a/tests/pending/run/macro-enclosingowner-detectvar/Test_2.scala
+++ /dev/null
@@ -1,23 +0,0 @@
-object Test extends dotty.runtime.LegacyApp {
- val a1 = Macros.foo
- val a2 = Predef.identity(Predef.identity(Macros.foo))
- val a3: Int = Macros.foo
- val a4: Int = Predef.identity(Predef.identity(Macros.foo))
-
- var b1 = Macros.foo
- var b2 = Predef.identity(Predef.identity(Macros.foo))
- var b3: Int = Macros.foo
- var b4: Int = Predef.identity(Predef.identity(Macros.foo))
-
- def c1 = Macros.foo
- def c2 = Predef.identity(Predef.identity(Macros.foo))
- def c3: Int = Macros.foo
- def c4: Int = Predef.identity(Predef.identity(Macros.foo))
- c1; c2; c3; c4;
-
- lazy val d1 = Macros.foo
- lazy val d2 = Predef.identity(Predef.identity(Macros.foo))
- lazy val d3: Int = Macros.foo
- lazy val d4: Int = Predef.identity(Predef.identity(Macros.foo))
- d1; d2; d3; d4
-} \ No newline at end of file