source: tests/ctrl-flow/superfluous.cfa@ 372d33c

Last change on this file since 372d33c was bada452, checked in by Andrew Beach <ajbeach@…>, 8 months ago

Removed warnings from serveral tests and removed them from the ..._TO_INVESTIGATE list. One test triggered a Cforall warning and a new test to check that has been added. collections/vector-demo has no warnings in its body, but the library it uses does have warnings and will have to move after that is fixed.

  • Property mode set to 100644
File size: 102 bytes
Line 
1// Check the superfluous-else warning.
2
3void main() {
4 while () {
5 return;
6 } else {
7 abort();
8 }
9}
Note: See TracBrowser for help on using the repository browser.