mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
If new inference is enabled only for IDE analysis, then this feature will be disabled to reduce difference between new and old inference, but if new inference is enabled in the compiler, then this feature will be enabled too to preserve behavior of new inference for compilation #KT-32175 Fixed #KT-32143 Fixed #KT-32123 Fixed #KT-32230 Fixed
45 lines
1.1 KiB
Kotlin
Vendored
45 lines
1.1 KiB
Kotlin
Vendored
// !LANGUAGE: +NewInference +SamConversionPerArgument
|
|
// IGNORE_BACKEND: JVM_IR
|
|
// TARGET_BACKEND: JVM
|
|
// WITH_RUNTIME
|
|
// FILE: Fn.java
|
|
public interface Fn<T, R> {
|
|
R run(String s, int i, T t);
|
|
}
|
|
|
|
// FILE: J.java
|
|
public class J {
|
|
public int runConversion(Fn<String, Integer> f1, Fn<Integer, String> f2) {
|
|
return f1.run("Bar", 1, f2.run("Foo", 42, 239));
|
|
}
|
|
}
|
|
|
|
// FILE: 1.kt
|
|
fun box(): String {
|
|
val j = J()
|
|
var x = ""
|
|
|
|
val fsi = object : Fn<String, Int> {
|
|
override fun run(s: String, i: Int, t: String): Int {
|
|
x += "$s$i$t "
|
|
return i
|
|
}
|
|
}
|
|
|
|
val fis = object : Fn<Int, String> {
|
|
override fun run(s: String, i: Int, t: Int): String {
|
|
x += "$s$i$t "
|
|
return s
|
|
}
|
|
}
|
|
|
|
val r1 = j.runConversion(fsi) { s, i, ti -> x += "L$s$i$ti "; "L$s"}
|
|
val r2 = j.runConversion({ s, i, ts -> x += "L$s$i$ts"; i }, fis)
|
|
|
|
if (r1 != 1) return "fail r1: $r1"
|
|
if (r2 != 1) return "fail r2: $r2"
|
|
|
|
if (x != "LFoo42239 Bar1LFoo Foo42239 LBar1Foo") return x
|
|
|
|
return "OK"
|
|
} |