JavaCompilerCore/resources/bytecode/javFiles/Bug295.jav
Daniel Holle 0acfe6c0d4
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Has been cancelled
Implement ThisCall (fix #295)
2024-03-18 13:29:53 +01:00

19 lines
261 B
Java

import java.lang.Integer;
public class Bug295 {
public Integer a;
public Integer b;
public Integer c;
public Bug295(a, b, c) {
this(a);
this.b = b;
this.c = c;
}
public Bug295(a) {
this.a = a;
}
}