Files
kotlin-fork/idea/testData/completion/basic/VisibilityClassMembersFromExternalForce.kt
T
Nikolay Krasko 66eaeedd31 Add types in test
2012-08-06 11:05:09 +04:00

13 lines
263 B
Kotlin

class Some() {
public val testPublic : Int = 12
protected val testProtected : Int = 12
private val testPrivate = 12
val testPackage = 12
}
fun test() {
Some().<caret>
}
// TIME: 2
// EXIST: testPublic, testProtected, testPrivate, testPackage