[FIR] Handle open in interface correctly during status resolve

This commit is contained in:
Mikhail Glukhikh
2020-08-20 14:25:40 +03:00
parent 8e2c5bf4fe
commit 99d2fd7c4d
6 changed files with 75 additions and 6 deletions
@@ -0,0 +1,15 @@
interface Some {
open fun foo()
open fun bar() {}
open val x: Int
open val y = 1
open val z get() = 1
open var xx: Int
open var yy = 1
open var zz: Int
set(value) {
field = value
}
}