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