KT-4529 Lambdas are analyzed improperly in an infix call nested inside a println
#KT-4529 Fixed
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package o
|
||||
|
||||
class A {
|
||||
fun foo(b: B) = b
|
||||
}
|
||||
|
||||
class B {
|
||||
fun bar() {}
|
||||
}
|
||||
|
||||
fun test(a: A, b: B?) {
|
||||
a foo b!!
|
||||
<!DEBUG_INFO_AUTOCAST!>b<!>.bar()
|
||||
}
|
||||
Reference in New Issue
Block a user