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