Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
addAnnotationTarget
/
withJava.before.Main.kt
blob: f118d5a42745bca703d7194516166c3bc8e23cbf [
file
]
// "Add annotation target" "true"
// ERROR: This annotation is not applicable to target 'expression'
package
test
annotation
class
AnnTarget
fun println
(
v
:
Int
)
{}
fun apply
()
{
var
v
=
0
<caret>
@AnnTarget
v
++
println
(
v
)
}