forked from JavaTX/JavaCompilerCore
788ddb2bcc
modified: test/bytecode/javFiles/Field.jav Field-Test funktioniert
9 lines
95 B
Java
9 lines
95 B
Java
import java.lang.Integer;
|
|
|
|
public class Field {
|
|
public Integer x = 5;
|
|
|
|
m(){
|
|
return x;
|
|
}
|
|
} |