forked from JavaTX/JavaCompilerCore
8be4f94edf
In Matrix.jav Binary-Operation eingefuegt. new file: test/javFiles/Meth_Gen.jav new file: test/typeinference/Meth_GenTest.java Test zu Constraints ueber eine Methode hinaus
11 lines
94 B
Java
11 lines
94 B
Java
class Meth_Gen {
|
|
|
|
m1(x, y) {
|
|
m2(x);
|
|
x = y;
|
|
}
|
|
|
|
m2(y) {
|
|
m1(y, y);
|
|
}
|
|
} |