aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/macro-sip19/Test_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/macro-sip19/Test_2.scala')
-rw-r--r--tests/pending/run/macro-sip19/Test_2.scala16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/pending/run/macro-sip19/Test_2.scala b/tests/pending/run/macro-sip19/Test_2.scala
deleted file mode 100644
index 0255f1381..000000000
--- a/tests/pending/run/macro-sip19/Test_2.scala
+++ /dev/null
@@ -1,16 +0,0 @@
-import Macros._
-
-object Test extends dotty.runtime.LegacyApp {
- def foo(x: Int, y: Int)(implicit loc0: SourceLocation): Int = {
- var loc = loc0;
- {
- var loc0 = 0 // shadow loc0 to disambiguate with the implicit macro
- println("hey, i've been called from %s".format(loc))
- if (x < y) foo(y, x)
- else if (y == 0) x
- else foo(x - y, y)
- }
- }
-
- println(foo(4, 2))
-}