| /* |
| * Copy of JVM-backend test |
| * Found at: compiler/testData/codegen/boxInline/simple/simpleDouble.1.kt |
| */ |
| |
| // FILE: lib.kt |
| package foo |
| |
| class InlineDouble(val res : Double) { |
| |
| inline fun foo(s : () -> Double) : Double { |
| val f = "fooStart" |
| val z = s() |
| return z |
| } |
| |
| inline fun foo11(s : (l: Double) -> Double) : Double { |
| return s(11.0) |
| } |
| |
| inline fun fooRes(s : (l: Double) -> Double) : Double { |
| val z = s(res) |
| return z |
| } |
| |
| inline fun fooRes2(s : (l: Double, t: Double) -> Double) : Double { |
| val f = "fooRes2Start" |
| val z = s(1.0, 11.0) |
| return z |
| } |
| } |
| |
| // FILE: main.kt |
| package foo |
| |
| // CHECK_BREAKS_COUNT: function=test0Param count=0 |
| // CHECK_LABELS_COUNT: function=test0Param name=$l$block count=0 |
| fun test0Param(): Double { |
| val inlineX = InlineDouble(10.0) |
| return inlineX.foo({ -> 1.0}) |
| } |
| |
| // CHECK_BREAKS_COUNT: function=test1Param count=0 |
| // CHECK_LABELS_COUNT: function=test1Param name=$l$block count=0 |
| fun test1Param(): Double { |
| val inlineX = InlineDouble(10.0) |
| return inlineX.foo11({ z: Double -> z}) |
| } |
| |
| // CHECK_BREAKS_COUNT: function=test1ParamCaptured count=0 |
| // CHECK_LABELS_COUNT: function=test1ParamCaptured name=$l$block count=0 |
| fun test1ParamCaptured(): Double { |
| val s = 100.0 |
| val inlineX = InlineDouble(10.0) |
| return inlineX.foo11({ z: Double -> s}) |
| } |
| |
| // CHECK_BREAKS_COUNT: function=test1ParamMissed count=0 |
| // CHECK_LABELS_COUNT: function=test1ParamMissed name=$l$block count=0 |
| fun test1ParamMissed() : Double { |
| val inlineX = InlineDouble(10.0) |
| return inlineX.foo11({ z: Double -> 111.0}) |
| } |
| |
| // CHECK_BREAKS_COUNT: function=test1ParamFromCallContext count=0 |
| // CHECK_LABELS_COUNT: function=test1ParamFromCallContext name=$l$block count=0 |
| fun test1ParamFromCallContext() : Double { |
| val inlineX = InlineDouble(1000.0) |
| return inlineX.fooRes({ z: Double -> z}) |
| } |
| |
| // CHECK_BREAKS_COUNT: function=test2Params count=0 |
| // CHECK_LABELS_COUNT: function=test2Params name=$l$block count=0 |
| fun test2Params() : Double { |
| val inlineX = InlineDouble(1000.0) |
| return inlineX.fooRes2({ y: Double, z: Double -> 2.0 * y + 3.0 * z}) |
| } |
| |
| // CHECK_BREAKS_COUNT: function=test2ParamsWithCaptured count=0 |
| // CHECK_LABELS_COUNT: function=test2ParamsWithCaptured name=$l$block count=0 |
| fun test2ParamsWithCaptured() : Double { |
| val inlineX = InlineDouble(1000.0) |
| val s = 9.0 |
| var t = 1.0 |
| return inlineX.fooRes2({ y: Double, z: Double -> 2.0 * s + t}) |
| } |
| |
| fun box(): String { |
| if (test0Param() != 1.0) return "test0Param" |
| if (test1Param() != 11.0) return "test1Param()" |
| if (test1ParamCaptured() != 100.0) return "testtest1ParamCaptured()" |
| if (test1ParamMissed() != 111.0) return "test1ParamMissed()" |
| if (test1ParamFromCallContext() != 1000.0) return "test1ParamFromCallContext()" |
| if (test2Params() != 35.0) return "test2Params()" |
| if (test2ParamsWithCaptured() != 19.0) return "test2ParamsWithCaptured()" |
| return "OK" |
| } |