K
Size: a a a
TS
TS
EP
SS
АР
struct S {
S& operator = (const S&) = default;
const int i = 0;
};
IL
<source>:2:8: warning: explicitly defaulted copy assignment operator is implicitly deleted [-Wdefaulted-function-deleted]
S& operator = (const S&) = default;
^
<source>:3:15: note: copy assignment operator of 'S' is implicitly deleted because field 'i' is of const-qualified type 'const int'
const int i = 0;
^
1 warning generated.
S