b925b6ef9f
#KT-10494
9 lines
162 B
Kotlin
Vendored
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`()
|