Add test for annotation parameter reference

This commit is contained in:
Pavel V. Talanov
2015-10-27 21:06:45 +03:00
parent 69b3e5e21e
commit 5f4bb4e941
3 changed files with 12 additions and 1 deletions
@@ -0,0 +1,5 @@
@k.KAnno(<caret>d = "val")
public class Class {
}
// REF: (k.KAnno).d
+1 -1
View File
@@ -52,4 +52,4 @@ public class TraitWithDelegatedWithImpl(f: TraitWithImpl) : TraitWithImpl by f
kotlin.jvm.jvmOverloads
public fun withJvmOverloads(i: Int, b: Boolean = false, s: String="hello") {}
annotation class KAnno(val c: Int = 4, val d: String)