prog.cpp:21:28: error: ‘static void A::operator=(int)’ must be a nonstatic member function
static void operator =(int);
^
prog.cpp:17:13: error: ‘int A::a’ is private
static int a;
^
prog.cpp:25:4: error: within this context
A::a;
^
prog.cpp:25:1: error: ‘a’ in ‘class A’ does not name a type
A::a;
^
prog.cpp:33:13: error: prototype for ‘void A::operator=(int)’ does not match any in class ‘A’
static void A:: operator =(int b){
^
prog.cpp:14:7: error: candidates are: A& A::operator=(A&&)
class A{
^
prog.cpp:14:7: error: A& A::operator=(const A&)