compiler-design-eth/javali_tests/HW2_nop90/Assignments.javali

12 lines
262 B
Text
Raw Normal View History

2020-01-15 22:30:09 +01:00
/* testing assign statements*/
class Main {
void main() {
a = read();
b = methodCall();
c = methodCall(param1, param2);
d = object.access;
e = new Ast();
d = new int[size];
f = new Object[size];
}
}