9548486b55
Inside `transformDeclarationContent` current tower data context is saved. Previously, stored context could be incomplete, because `dataFlowAnalyzer.enterFunction(function)` wasn't called in all cases. ^KTIJ-26419 Fixed
7 lines
108 B
Kotlin
Vendored
7 lines
108 B
Kotlin
Vendored
class A
|
|
|
|
fun Any.test(): () -> Int = when {
|
|
this is A -> fun() = <expr>e</expr>
|
|
else -> { { 0 } }
|
|
}
|