b454fcc1e0
This is needed to avoid clashes between different dumps from different handlers
15 lines
539 B
Plaintext
Vendored
15 lines
539 B
Plaintext
Vendored
fun test(a: SomeJavaClass<out String>) {
|
|
a.someFunction(hello = local fun <anonymous>(it: @FlexibleNullability String?) {
|
|
return Unit
|
|
}
|
|
/*-> @FlexibleNullability Hello<@FlexibleNullability String?>? */)
|
|
a.plus(hello = local fun <anonymous>(it: @FlexibleNullability String?) {
|
|
return Unit
|
|
}
|
|
/*-> @FlexibleNullability Hello<@FlexibleNullability String?>? */)
|
|
a.get(hello = local fun <anonymous>(it: @FlexibleNullability String?) {
|
|
return Unit
|
|
}
|
|
/*-> @FlexibleNullability Hello<@FlexibleNullability String?>? */)
|
|
}
|