uses thing_a; uses thing_a as renamed_a; int f() { thing_a x1; renamed_a x2; int i = x1.y.z; int j = x2.yy.zz; return i + x2.y.z + x1.yy.zz; }