[FIR-TEST] Add new testdata generated after changes in previous commit
This commit is contained in:
Vendored
+16
@@ -0,0 +1,16 @@
|
||||
abstract class A {
|
||||
abstract protected fun foo(): String
|
||||
abstract protected val bar: String
|
||||
}
|
||||
|
||||
interface B {
|
||||
fun foo(): String
|
||||
val bar: String
|
||||
}
|
||||
|
||||
fun test(x: A) {
|
||||
if (x is B) {
|
||||
x.foo()
|
||||
x.bar
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user