11 lines
No EOL
215 B
Text
11 lines
No EOL
215 B
Text
// The left-hand side of an assignment cannot be a method call
|
|
// Valid options are variable accesses, fields or an indexed array
|
|
|
|
class Main {
|
|
void main() {
|
|
action() = read();
|
|
}
|
|
int action() {
|
|
return 0;
|
|
}
|
|
} |