Files
kotlin-fork/idea/testData/refactoring/extractInterface/liftProtected.kt
T
2018-06-28 17:52:04 +03:00

8 lines
228 B
Kotlin
Vendored

// NAME: IPurePrivate
// SIBLING:
class PurePrivate {
// INFO: {checked: "true", toAbstract: "true"}
protected var protectedVar = 0
// INFO: {checked: "true", toAbstract: "true"}
protected fun protectedFun() {}
}