Files
kotlin-fork/plugins/sam-with-receiver/testData/diagnostics/singleParameterWithoutAnnotation.kt
T
2022-12-01 07:29:36 +00:00

17 lines
310 B
Kotlin
Vendored

// FILE: Sam.java
public interface Sam {
void run(String a);
}
// FILE: test.kt
fun test() {
Sam { a ->
System.out.println(a)
}
Sam {
val a = <!NO_THIS!>this<!>
System.out.<!OVERLOAD_RESOLUTION_AMBIGUITY!>println<!>(<!DEBUG_INFO_ELEMENT_WITH_ERROR_TYPE!>a<!>)
}
}