Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
kt34440.kt
blob: 13c7b407f80cf4cca3266c25d201c03e4a35fcda [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
// ISSUE: KT-34440
class
BufferUtil
{
fun isDirect
(
cond
:
Boolean
):
Boolean
=
when
(
cond
)
{
else
->
throw
Exception
(
"${<!UNRESOLVED_REFERENCE!>buf<!>.<!SYNTAX!><!>}"
)
}
private
class
BufferInfo
(
private
val type
:
Class
<*>)
}