Files
kotlin-fork/plugins/uast-kotlin/testData/LocalDeclarations.kt
T
Vyacheslav Gerasimov bc403ce744 Switch to 181 platform
2018-04-27 18:25:17 +03:00

14 lines
205 B
Kotlin
Vendored

fun foo(): Boolean {
class Local
fun bar() = Local()
val baz = fun() {
Local()
}
fun Int.someLocalFun(text: String) = 42
object LocalObject
return bar() == Local()
}