JavaTXCompilerInJavaTX/test/bytecode/Test.java

17 lines
465 B
Java
Raw Normal View History

2015-07-14 12:49:46 +00:00
/**
* Diese Klasse testet die generierte EmptyClass.class-Datei
*/
class Test{
public static void main(String[] args){
new EmptyClass();
2015-08-27 11:36:14 +00:00
new Assign();
System.out.println(new Return().method());
2015-08-27 14:36:19 +00: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-23 13:30:35 +00:00
Test t = new Identity<Test,Test>().op.apply(new Test());
System.out.println(t);
2015-07-14 12:49:46 +00:00
}
}