#include <iostream>
#include <cstdlib>

using namespace std;

int main()
{
    struct X
    {
        mutable struct 
        {
            int i;
            int j;            
        } y;
    };
    X const x{};
    x.y.i = 1;
    return EXIT_SUCCESS;
}