blob: b186637d32d21b80f9543104a9890e14653cf14c [file]
// FILE: SamConstructor.kt
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<!>(a)
}
}