aboutsummaryrefslogtreecommitdiff
path: root/tests/run/inlinePower/power_1.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-09-02 17:23:54 +0200
committerMartin Odersky <odersky@gmail.com>2016-10-02 16:11:21 +0200
commit96d057364703a9b89ca49f2ac16f2cdb140d396d (patch)
treee597ebb61fc730c3c1ba6c08fd027f7712adecb1 /tests/run/inlinePower/power_1.scala
parenta47a8008023ea04ff7f8d708567fb6a2c516caaa (diff)
downloaddotty-96d057364703a9b89ca49f2ac16f2cdb140d396d.tar.gz
dotty-96d057364703a9b89ca49f2ac16f2cdb140d396d.tar.bz2
dotty-96d057364703a9b89ca49f2ac16f2cdb140d396d.zip
Support separate compilation
Inline trees can now be read form TASTY. However, positions are not set correctly. This remains to be implemented.
Diffstat (limited to 'tests/run/inlinePower/power_1.scala')
-rw-r--r--tests/run/inlinePower/power_1.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/run/inlinePower/power_1.scala b/tests/run/inlinePower/power_1.scala
new file mode 100644
index 000000000..1faa10516
--- /dev/null
+++ b/tests/run/inlinePower/power_1.scala
@@ -0,0 +1,13 @@
+package p
+
+object pow {
+
+ @dotty.annotation.inline
+ def power(x: Double, n: Int): Double =
+ if (n == 0) 1.0
+ else if (n == 1) x
+ else {
+ val y = power(x, n / 2)
+ if (n % 2 == 0) y * y else y * y * x
+ }
+}