[FIR2IR] Approximate non-denotable types when converting ConeType to IrType
This commit is contained in:
committed by
TeamCityServer
parent
c271f953d7
commit
da0fd7cc15
+4
-3
@@ -2,13 +2,14 @@ fun test(a: SomeJavaClass<out String>) {
|
||||
a.someFunction(hello = local fun <anonymous>(it: String?) {
|
||||
return Unit
|
||||
}
|
||||
/*-> Hello<String>? */)
|
||||
/*-> Hello<String?>? */)
|
||||
a.plus(hello = local fun <anonymous>(it: String?) {
|
||||
return Unit
|
||||
}
|
||||
/*-> Hello<String>? */)
|
||||
/*-> Hello<String?>? */)
|
||||
a.get(hello = local fun <anonymous>(it: String?) {
|
||||
return Unit
|
||||
}
|
||||
/*-> Hello<String>? */)
|
||||
/*-> Hello<String?>? */)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user