aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/macro-sip19/Test_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/disabled/macro/run/macro-sip19/Test_2.scala')
-rw-r--r--tests/disabled/macro/run/macro-sip19/Test_2.scala16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/disabled/macro/run/macro-sip19/Test_2.scala b/tests/disabled/macro/run/macro-sip19/Test_2.scala
new file mode 100644
index 000000000..0255f1381
--- /dev/null
+++ b/tests/disabled/macro/run/macro-sip19/Test_2.scala
@@ -0,0 +1,16 @@
+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))
+}