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

8 lines
224 B
Kotlin
Vendored

// NAME: IPurePrivate
// SIBLING:
class PurePrivate {
// INFO: {checked: "true", toAbstract: "true"}
internal var internalVar = 0
// INFO: {checked: "true", toAbstract: "true"}
internal fun internalFun() {}
}