1void outside_loop() { 2 for (int x=0; x<10; ++x) {} 3 if (true) break; 4} 5 6/*%%* 7break statement must be inside a loop or switch 8*%%*/ 9