Add more annotation tests, add KClass to Class substitution

This commit is contained in:
Tamas Vajk
2022-04-13 09:59:26 +02:00
committed by Chris Smowton
parent f465dd5362
commit 3e1d4a7400
5 changed files with 76 additions and 18 deletions

View File

@@ -9,5 +9,7 @@ public class use implements Annot0k {
@Annot0j(abc = 1)
@Annot1j(a = 1, b = "ac", c = X.class, d = Y.B, e = {Y.C, Y.A}, f = @Annot0j(abc = 2))
@Annot0k(a = 1)
@Annot1k(a = 1, b = "ac", c = X.class, d = Y.B, e = {Y.C, Y.A}, f = @Annot0k(a = 2))
public class Z { }
}