• Source
    1. struct X{
    2. const int x;
    3. X(int xx){x=xx;}// Error
    4. };
    5. int main(){
    6. X q{1}; //Error
    7. }