Fix for KT-15027 J2K: Annotations are set on functions, but not on property accessors

#KT-15027 fixed
This commit is contained in:
Simon Ogorodnik
2016-12-13 19:34:57 +03:00
committed by Simon Ogorodnik
parent 5071baf970
commit 73ea0e8460
13 changed files with 162 additions and 22 deletions
@@ -0,0 +1,18 @@
@interface An {
String value();
}
public class Test {
private int id;
@An(value = "get")
public int getId() {
return id;
}
@An(value = "set")
public void setId(int id) {
this.id = id
}
}