// 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; } }