12 lines
216 B
Kotlin
Vendored
12 lines
216 B
Kotlin
Vendored
package org.test
|
|
|
|
public data class SomeClass {
|
|
|
|
public val immutableProperty: Int = 5
|
|
@Deprecated get
|
|
|
|
public var mutableProperty: String = "String"
|
|
@Deprecated get
|
|
@Deprecated set
|
|
|
|
} |