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

12 lines
181 B
Plaintext
Vendored

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