88ff93df7f
^KT-58203 Fixed ^KT-62646
18 lines
340 B
Kotlin
Vendored
18 lines
340 B
Kotlin
Vendored
// SKIP_TXT
|
|
// FIR_DUMP
|
|
|
|
abstract class InlineCompletionSessionManager {
|
|
protected class Proto {
|
|
class Some
|
|
}
|
|
}
|
|
|
|
fun checkCannotAccess() {
|
|
object : InlineCompletionSessionManager() {
|
|
fun chch() {
|
|
val b: Proto = Proto()
|
|
if (<!USELESS_IS_CHECK!>b is Proto.Some<!>) return
|
|
}
|
|
}
|
|
}
|