Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
addAnnotationTarget
/
expression3.kt.after
blob: 8060c88cff415a124fb1eb3c9f09e9f0865c90e0 [
file
]
// "Add annotation target" "true"
@Target
(
AnnotationTarget
.
EXPRESSION
)
@Retention
(
AnnotationRetention
.
SOURCE
)
annotation
class
Foo
fun test
()
{
var
v
=
0
@Foo
v
++
}