kill-switch.c 205 B

123456789101112131415161718
  1. extern int i;
  2. static void foo(void)
  3. {
  4. switch (i) {
  5. case 0:
  6. ;
  7. }
  8. }
  9. /*
  10. * check-name: kill-switch
  11. * check-command: test-linearize $file
  12. *
  13. * check-output-ignore
  14. * check-output-excludes: load\\.
  15. */