Files
kotlin-fork/plugins/annotation-collector/testData/collectToFile/fieldAnnotations/fieldAnnotations.kt
T
2015-09-18 10:14:32 +03:00

11 lines
180 B
Kotlin
Vendored

package org.test
public class SomeClass {
@java.lang.Deprecated
public val annotatedVal: String? = null
@java.lang.Deprecated
public var annotatedVar: Int = 5
}