[SLC] add tests on private object
^KT-56441
This commit is contained in:
committed by
Space Team
parent
fa231f60ae
commit
8e815e943e
@@ -0,0 +1,12 @@
|
||||
// one.PrivateObject
|
||||
package one
|
||||
|
||||
private object PrivateObject {
|
||||
var publicProperty = 4
|
||||
internal var internalProperty = false
|
||||
private var privateProperty = ""
|
||||
|
||||
fun publicFun() {}
|
||||
internal fun internalFun() {}
|
||||
private fun privateFun() {}
|
||||
}
|
||||
Reference in New Issue
Block a user