struct Test{ Test(int& v):rf(v){} int& rf; int obj; }; int main(){ int i = 0; Test t{i}; t.rf = 1; t.obj =