Merge branch 'targetBytecode' of ssh://gohorb.ba-horb.de/bahome/projekt/git/JavaCompilerCore into targetBytecode

This commit is contained in:
pl@gohorb.ba-horb.de 2024-05-14 22:53:52 +02:00
commit 39f04b1a1b

View File

@ -0,0 +1,10 @@
class Box<A> {
A a;
Box(A a) {
this.a = a;
}
}