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