Files
kotlin/plugins/annotation-processing/testData/javaWrappers/Simple/Simple.java
Yan Zhulanow 927280f7ce Kapt: add some JeElement tests
(cherry picked from commit 948a4b6)
2016-08-29 16:31:16 +03:00

20 lines
326 B
Java
Vendored

// Simple
@KotlinAnnotation(a = "A", b = 5)
public abstract class Simple {
final String field = "A";
abstract void voidMethod();
static {
System.out.println("A");
}
{
System.out.println("b");
}
protected String strMethod(int param) {
return "A";
}
}