Files
kotlin-fork/compiler/testData/codegen/box/localClasses/nameWithWhitespace.kt
T
Alexander Udalov b925b6ef9f Add test for obsolete issue
#KT-10494
2018-01-12 12:50:38 +01:00

9 lines
162 B
Kotlin
Vendored

// IGNORE_BACKEND: JS
fun `method with spaces`(): String {
data class C(val s: String = "OK")
return C().s
}
fun box(): String = `method with spaces`()