contract C {
struct S {
int[] b;
}
S s;
struct T {
S[] s;
T t;
function f() public {
s.b.push();
t.s.push();
t.s[0].b.push();
// ====
// SMTEngine: all
// ----