blob: 50f0e9feb0d9c3d8386d0dcbb0fbbc48ed6463e1 [file]
// LANGUAGE: +JsAllowInvalidCharsIdentifiersEscaping
// Names with whitespaces are not allowed prior to DEX version 040
// IGNORE_DEXING
fun `method with spaces`(): String {
data class C(val s: String = "OK")
return C().s
}
fun box(): String = `method with spaces`()