Extract Superclass: Fix visibility lifting when moving to interface

#KT-16281 Fixed
This commit is contained in:
Alexey Sedunov
2018-06-09 17:25:24 +03:00
parent b0e0460ee6
commit bd88e02172
10 changed files with 112 additions and 15 deletions
@@ -0,0 +1,8 @@
// NAME: IPurePrivate
// SIBLING:
class PurePrivate {
// INFO: {checked: "true", toAbstract: "true"}
protected var protectedVar = 0
// INFO: {checked: "true", toAbstract: "true"}
protected fun protectedFun() {}
}