d869ae7826
Run different phases through common transformers sequentially It should make code more reusable and may help with avoid common bugs
12 lines
142 B
Kotlin
Vendored
12 lines
142 B
Kotlin
Vendored
fun test(x: Any) {
|
|
if (x !is String) return
|
|
|
|
class LocalOuter {
|
|
inner class Local {
|
|
init {
|
|
x.length
|
|
}
|
|
}
|
|
}
|
|
}
|