5 lines
113 B
Kotlin
5 lines
113 B
Kotlin
class Test(val str: String) {
|
|
private val some = 1
|
|
protected fun foo() = some
|
|
public fun other() {}
|
|
} |