mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
12 lines
187 B
Kotlin
12 lines
187 B
Kotlin
package test
|
|
|
|
class ClassValParams(
|
|
val pr1: String,
|
|
internal val pr2 : Int,
|
|
private val pr3: Long,
|
|
protected val pr4: java.util.Date,
|
|
public val pr5 : Any,
|
|
pr6: Object) {
|
|
}
|
|
|