1cb93a386Sopenharmony_civoid e(inout int i) { for (int x=0; x<10; ++x) ++i;  } // 100000
2cb93a386Sopenharmony_civoid d(inout int i) { for (int x=0; x<10; ++x) e(i); } // 10000
3cb93a386Sopenharmony_civoid c(inout int i) { for (int x=0; x<10; ++x) d(i); } // 1000
4cb93a386Sopenharmony_civoid b(inout int i) { for (int x=0; x<10; ++x) c(i); } // 100
5cb93a386Sopenharmony_civoid a(inout int i) { for (int x=0; x<10; ++x) b(i); } // 10
6cb93a386Sopenharmony_ci
7cb93a386Sopenharmony_cihalf4 main(float2 xy) {
8cb93a386Sopenharmony_ci    int i = 0;
9cb93a386Sopenharmony_ci    a(i);
10cb93a386Sopenharmony_ci    return half4(0);
11cb93a386Sopenharmony_ci}
12