Files
kotlin-fork/plugins/sam-with-receiver/testData/diagnostics/samConversionSimple.kt
T
2022-06-27 08:11:33 +00:00

21 lines
429 B
Kotlin
Vendored

// FILE: SamConstructor.kt
@SamWithReceiver
public interface Sam {
void run(String a);
}
// FILE: Exec.java
public class Exec {
void exec(Sam sam) {}
}
// FILE: test.kt
annotation class SamWithReceiver
fun test() {
val e = Exec()
e.exec <!ARGUMENT_TYPE_MISMATCH!>{ <!CANNOT_INFER_PARAMETER_TYPE!>a<!> -> System.out.<!OVERLOAD_RESOLUTION_AMBIGUITY!>println<!>(a) }<!>
e.exec { System.out.println(this) }
}