55adeba011
K1 and K2 still differ because of KT-58203 #KT-63434
18 lines
317 B
Kotlin
Vendored
18 lines
317 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 (b is Proto.Some) return
|
|
}
|
|
}
|
|
}
|