1cb93a386Sopenharmony_civoid d(inout int i) { for (int x=0; x<10; ++x) ++i; } // 10000 2cb93a386Sopenharmony_civoid c(inout int i) { for (int x=0; x<10; ++x) d(i); } // 1000 3cb93a386Sopenharmony_civoid b(inout int i) { for (int x=0; x<10; ++x) c(i); } // 100 4cb93a386Sopenharmony_civoid a(inout int i) { for (int x=0; x<10; ++x) 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