15 lines
347 B
Plaintext
Vendored
15 lines
347 B
Plaintext
Vendored
fun test(a: SomeJavaClass<out String>) {
|
|
a.someFunction(hello = local fun <anonymous>(it: String?) {
|
|
return Unit
|
|
}
|
|
/*-> Hello<String>? */)
|
|
a.plus(hello = local fun <anonymous>(it: String?) {
|
|
return Unit
|
|
}
|
|
/*-> Hello<String>? */)
|
|
a.get(hello = local fun <anonymous>(it: String?) {
|
|
return Unit
|
|
}
|
|
/*-> Hello<String>? */)
|
|
}
|