diff --git a/resources/AllgemeinTest/Box.jav b/resources/AllgemeinTest/Box.jav new file mode 100644 index 00000000..bd5c39e5 --- /dev/null +++ b/resources/AllgemeinTest/Box.jav @@ -0,0 +1,10 @@ +class Box { + + A a; + + Box(A a) { + this.a = a; + } +} + +