Files
kotlin-fork/compiler/testData/codegen/box/localClasses/nameWithWhitespace.kt
T
2018-06-28 12:26:41 +02:00

11 lines
213 B
Kotlin
Vendored

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