source: tests/zombies/abort.cfa@ eeaa3e2

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since eeaa3e2 was dda3e2a, checked in by Thierry Delisle <tdelisle@…>, 6 years ago

Moved tests without .expect to zombies folder

  • Property mode set to 100644
File size: 164 bytes
Line 
1#include <stdlib.h>
2
3int level3() {
4 abort();
5 return 0;
6}
7
8int level2() {
9 return level3();
10}
11
12int level1() {
13 return level2();
14}
15
16int main() {
17 return level1();
18}
Note: See TracBrowser for help on using the repository browser.