Annotation arguments resolve refactoring via ForceResolveUtil. Deptecated...Intention fixed accordingly

This commit is contained in:
Mikhail Glukhikh
2015-06-08 16:29:55 +03:00
parent 64b60718e3
commit 731e5d85a4
15 changed files with 84 additions and 8 deletions
@@ -0,0 +1,8 @@
annotation class My
fun foo(): Int {
val s = object {
@My val bar: Int = 0
}
return s.bar
}