329066a4f3
Problem appeared in cases like this: "{someVar.}"
#KT-34440 Fixed
10 lines
284 B
Kotlin
Vendored
10 lines
284 B
Kotlin
Vendored
// ISSUE: KT-34440
|
|
|
|
class BufferUtil {
|
|
fun isDirect(cond: Boolean): Boolean =
|
|
when (<!UNUSED_EXPRESSION!>cond<!>) {
|
|
else -> throw Exception("${<!UNRESOLVED_REFERENCE!>buf<!>.<!SYNTAX!><!>}")
|
|
}
|
|
private class BufferInfo(private val type: Class<*>)
|
|
}
|