summaryrefslogtreecommitdiff
path: root/test/files/run/macro-sip19-revised/Test_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/macro-sip19-revised/Test_2.scala')
-rw-r--r--test/files/run/macro-sip19-revised/Test_2.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/files/run/macro-sip19-revised/Test_2.scala b/test/files/run/macro-sip19-revised/Test_2.scala
new file mode 100644
index 0000000000..d9a4d7d4fc
--- /dev/null
+++ b/test/files/run/macro-sip19-revised/Test_2.scala
@@ -0,0 +1,12 @@
+import Macros._
+
+object Test extends App {
+ def foo(x: Int, y: Int)(implicit loc: SourceLocation): Int = {
+ 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))
+}