16 lines
426 B
Java
Raw Normal View History

2015-07-14 14:49:46 +02:00
/**
* Diese Klasse testet die generierte EmptyClass.class-Datei
*/
class Test{
public static void main(String[] args){
new EmptyClass();
2015-08-27 13:36:14 +02:00
new Assign();
System.out.println(new Return().method());
2015-08-27 16:36:19 +02:00
new MethodCall().method();
System.out.println(new FieldDeclaration().field);
System.out.println(new Runnable().method().apply());
Runnable r = new Runnable().method().apply();
2015-09-22 18:43:36 +02:00
//Test t = new Identity().op.apply(this);
2015-07-14 14:49:46 +02:00
}
}