9514f8f873
FirDeclarationsResolveTransformer.transformSimpleFunction() performs proper local function analysis only if the parent is properly set. ^KTIJ-26608 Fixed
7 lines
82 B
Kotlin
7 lines
82 B
Kotlin
fun foo(a: Int, b: String) {}
|
|
|
|
fun bar() {
|
|
<expr>foo(1, "foo")</expr>
|
|
}
|
|
|
|
bar() |