eb71e686da
A random order of usages is enabled in 193 platform that makes tests flaky without the commit.
10 lines
195 B
Plaintext
Vendored
10 lines
195 B
Plaintext
Vendored
// "Add annotation target" "true"
|
|
|
|
@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.TYPE)
|
|
annotation class Foo
|
|
|
|
@Foo
|
|
class Test {
|
|
@Foo
|
|
fun foo(): @Foo Int = 1
|
|
} |