875fdef917
#KT-15913 Obsolete #KT-12248 Obsolete
19 lines
306 B
Kotlin
Vendored
19 lines
306 B
Kotlin
Vendored
// FILE: Context.java
|
|
|
|
public interface Context {
|
|
String BEAN = "context";
|
|
}
|
|
|
|
// FILE: Test.kt
|
|
|
|
annotation class Resource(val name: String)
|
|
|
|
class MyController {
|
|
companion object {
|
|
private const val foo = Context.BEAN
|
|
}
|
|
|
|
@Resource(name = Context.BEAN)
|
|
fun setContext() {
|
|
}
|
|
} |