12 lines
262 B
Text
12 lines
262 B
Text
|
/* 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];
|
||
|
}
|
||
|
}
|