de50f8aef3
Here we introduce ONLY_IMPLICIT_RECEIVER tower level to support extension lambda calls on local variables, and soften extension receiver checks to make such extensions visible & applicable. Also here we try to map arguments twice for functional types
58 lines
882 B
Kotlin
Vendored
58 lines
882 B
Kotlin
Vendored
// !DIAGNOSTICS: -NON_LOCAL_RETURN_NOT_ALLOWED
|
|
// FILE: Run.java
|
|
public interface Run {
|
|
public int run();
|
|
}
|
|
|
|
|
|
// FILE: Test.java
|
|
public class Test {
|
|
public void test(Run r) {
|
|
|
|
}
|
|
}
|
|
|
|
// FILE: test.kt
|
|
inline fun inlineFunWithInvoke(s: (p: Int) -> Unit, ext: Int.(p: Int) -> Unit) {
|
|
Test().test(){
|
|
s(11)
|
|
s.invoke(11)
|
|
s invoke 11
|
|
|
|
11.ext(11)
|
|
11 ext 11
|
|
|
|
s
|
|
ext
|
|
11
|
|
}
|
|
}
|
|
|
|
inline fun inlineFunWithInvokeNonInline(noinline s: (p: Int) -> Unit, ext: Int.(p: Int) -> Unit) {
|
|
Test().test(){
|
|
s(11)
|
|
s.invoke(11)
|
|
s invoke 11
|
|
|
|
11.ext(11)
|
|
11 ext 11
|
|
|
|
s
|
|
ext
|
|
|
|
11
|
|
}
|
|
}
|
|
|
|
inline fun Function1<Int, Unit>.inlineExt() {
|
|
Test().test(){
|
|
invoke(11)
|
|
this.invoke(11)
|
|
this invoke 11
|
|
this(11)
|
|
|
|
this
|
|
|
|
11
|
|
}
|
|
} |