Files
kotlin/idea/testData/refactoring/inline/function/OuterClassReceiver.kt.after
Valentin Kipyatkov 996292264b Fixed inline when multiple implicit receivers exist
#KT-17776 Fixed
 #KT-17266 Fixed
2017-07-27 13:55:25 +03:00

14 lines
200 B
Plaintext
Vendored

class Test {
inner class Inner {
fun bar() {
listOf("").forEach {
bizz(it)
}
}
}
fun bizz(v:String) {
v.toString()
}
}