1cb93a386Sopenharmony_civoid test_init_stmt_for()       { for (for(;;);; )              {} }
2cb93a386Sopenharmony_civoid test_init_stmt_switch()    { for (switch(0) {} ; )         {} }
3cb93a386Sopenharmony_civoid test_init_stmt_while()     { for (while(false) {} ; )      {} }
4cb93a386Sopenharmony_civoid test_init_stmt_do()        { for (do {} while(false);; )   {} }
5cb93a386Sopenharmony_civoid test_init_stmt_if()        { for (if (false) {} ; )        {} }
6cb93a386Sopenharmony_civoid test_init_stmt_break()     { for (break;; )                {} }
7cb93a386Sopenharmony_civoid test_init_stmt_continue()  { for (continue;; )             {} }
8cb93a386Sopenharmony_civoid test_init_stmt_discard()   { for (discard;; )              {} }
9cb93a386Sopenharmony_civoid test_init_stmt_type()      { for (void;; )                 {} }
10cb93a386Sopenharmony_civoid test_init_stmt_deep()      { for (for(for(for(;;);;);;);;) {} }
11