mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
20 lines
326 B
Java
Vendored
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";
|
|
}
|
|
} |