JavaCompilerCore/resources/bytecode/javFiles/Bug310.jav
Daniel Holle 46a7f61234
All checks were successful
Build and Test with Maven / Build-and-test-with-Maven (push) Successful in 2m49s
Fix #310
2024-04-08 11:52:52 +02:00

9 lines
153 B
Java

import java.lang.Integer;
import java.lang.String;
public class Bug310 {
Integer i = 3;
public toString() {
return i.toString();
}
}