1 /* Unintentional nested function usage. */
2 /* Due to missing right braces '}', the following functions are parsed as
3 nested functions. This ran into an ICE. */
9 #pragma acc loop independent
10 for (int i
= 0; i
< 16; i
++)
12 // Note right brace '}' commented out here.
19 // Adding right brace '}' here, to make this compile.
23 // ..., and the other way round:
27 // Note right brace '}' commented out here.
34 #pragma acc loop independent
35 for (int i
= 0; i
< 16; i
++)
40 // Adding right brace '}' here, to make this compile.