0_0_38469947_16374.cpp: In function 'int main()':
0_0_38469947_16374.cpp:34:9: error: no match for 'operator=' (operand types are 'Robot' and '<brace-enclosed initializer list>')
rob[0]={0,-1,-1,false,false};
^
0_0_38469947_16374.cpp:34:9: note: candidates are:
0_0_38469947_16374.cpp:9:8: note: Robot& Robot::operator=(const Robot&)
struct Robot{
^
0_0_38469947_16374.cpp:9:8: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'const Robot&'
0_0_38469947_16374.cpp:9:8: note: Robot& Robot::operator=(Robot&&)
0_0_38469947_16374.cpp:9:8: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'Robot&&'
0_0_38469947_16374.cpp:35:11: error: no match for 'operator=' (operand types are 'Robot' and '<brace-enclosed initializer list>')
rob[n+1]={n+1,-1,-1,false,false};
^
0_0_38469947_16374.cpp:35:11: note: candidates are:
0_0_38469947_16374.cpp:9:8: note: Robot& Robot::operator=(const Robot&)
struct Robot{
^
0_0_38469947_16374.cpp:9:8: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'const Robot&'
0_0_38469947_16374.cpp:9:8: note: Robot& Robot::operator=(Robot&&)
0_0_38469947_16374.cpp:9:8: note: no known conversion for argument 1 from '<brace-enclosed initializer list>' to 'Robot&&'
|