J2K: updated to use of Kotlin's KClass instead of Java's class in annotation declarations and usages

This commit is contained in:
Valentin Kipyatkov
2015-05-27 19:18:15 +03:00
parent 0a2983d602
commit ce9a986524
27 changed files with 294 additions and 187 deletions
@@ -0,0 +1,8 @@
@interface Ann {
Class<?> value();
Class<?> other();
}
@Ann(other = String.class, value = Object.class)
class C {
}