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