16 lines
426 B
Java
16 lines
426 B
Java
/**
|
|
* Diese Klasse testet die generierte EmptyClass.class-Datei
|
|
*/
|
|
class Test{
|
|
public static void main(String[] args){
|
|
new EmptyClass();
|
|
new Assign();
|
|
System.out.println(new Return().method());
|
|
new MethodCall().method();
|
|
System.out.println(new FieldDeclaration().field);
|
|
System.out.println(new Runnable().method().apply());
|
|
Runnable r = new Runnable().method().apply();
|
|
//Test t = new Identity().op.apply(this);
|
|
}
|
|
}
|