aboutsummaryrefslogtreecommitdiff
path: root/tests/run/inlinePower/Test_2.scala
blob: 8e16587b56536e190c77954cbcdd10b68d06eb11 (plain) (blame)
1
2
3
4
5
6
7
8
9
import p.pow.power
object Test {

  def main(args: Array[String]): Unit = {
    println(power(2.0, 10))
    def x = 2.0
    println(power(x, 11))
  }
}