Files
kotlin-fork/plugins/annotation-collector/testData/collectToFile/fieldAnnotations/fieldAnnotations.kt
T
2015-05-21 15:48:07 +03:00

13 lines
173 B
Kotlin

package org.test
import javax.inject.*
public class SomeClass {
Inject
public val annotatedVal: String? = null
Inject
public var annotatedVar: Int = 5
}