source: doc/theses/rob_schluntz/examples/ctor/return_dtor.c@ 728df66

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new stuck-waitfor-destruct with_gc
Last change on this file since 728df66 was 728df66, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

more documentation name changes

  • Property mode set to 100644
File size: 342 bytes
Line 
1struct A;
2void ?{}(A *);
3void ^?{}(A *);
4
5void f(int i) {
6 A x; // construct x
7 {
8 A y; // construct y
9 {
10 A z; // construct z
11 {
12 if (i == 0) return; // destruct x, y, z
13 }
14 if (i == 1) return; // destruct x, y, z
15 // destruct z
16 }
17 if (i == 2) return; // destruct x, y
18 // destruct y
19 }
20}
Note: See TracBrowser for help on using the repository browser.