Add bytecode listing test for use site targets and default targets (with priorities)

This commit is contained in:
Yan Zhulanow
2015-08-26 15:51:57 +03:00
parent 9dbd355e92
commit 552211b2f4
9 changed files with 350 additions and 0 deletions
@@ -0,0 +1,13 @@
annotation class AnnProp
annotation class AnnField
annotation class AnnProp2
annotation class AnnGetter
annotation class AnnSetter
annotation class AnnParam
public class A(@AnnParam @field:AnnField @property:AnnProp2 val x: Int, @param:AnnParam @get:AnnGetter @set:AnnSetter var y: Int) {
@AnnProp @field:AnnField @property:AnnProp2 @get:AnnGetter @set:AnnSetter @sparam:AnnParam
var p: Int = 0
}