mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
committed by
Yan Zhulanow
parent
0fc92c784b
commit
927280f7ce
20
plugins/annotation-processing/testData/javaWrappers/Simple/Simple.java
vendored
Normal file
20
plugins/annotation-processing/testData/javaWrappers/Simple/Simple.java
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
// 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";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user