Add quick fix to add required target to annotation #KT-20484 Fixed

This commit is contained in:
Toshiaki Kameyama
2017-10-06 13:14:47 +03:00
committed by Mikhail Glukhikh
parent 204d9e3423
commit 9ea9ea1008
18 changed files with 295 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
// "Add annotation target" "true"
annotation class Foo
class Test {
fun foo(): <caret>@Foo Int = 1
}