mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
13 lines
261 B
Kotlin
Vendored
13 lines
261 B
Kotlin
Vendored
package foo
|
|
|
|
@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.VALUE_PARAMETER, AnnotationTarget.EXPRESSION)
|
|
annotation class fancy
|
|
|
|
@fancy
|
|
class Foo {
|
|
@fancy
|
|
fun baz(@fancy foo : Int) : Int {
|
|
return (@fancy 1)
|
|
}
|
|
}
|