Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9ca5f9c66ebdb7e907ed23a75ccf71e119b6392c
/
.
/
idea
/
testData
/
quickfix
/
addAnnotationTarget
/
hasAnnotationTarget2.kt.after
blob: fe6389e13b6e72baff939879e72d41e86f85e2c3 [
file
] [
log
] [
blame
]
// "Add annotation target" "true"
@Target
(
AnnotationTarget
.
CLASS
,
AnnotationTarget
.
FUNCTION
,
AnnotationTarget
.
TYPE
)
annotation
class
Foo
@Foo
class
Test
{
@Foo
fun foo
():
@Foo
Int
=
1
}