ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumwith_gc
Last change
on this file since de6319f was
728df66,
checked in by Peter A. Buhr <pabuhr@…>, 7 years ago
|
more documentation name changes
|
-
Property mode set to
100644
|
File size:
322 bytes
|
Rev | Line | |
---|
[7493339] | 1 | struct T { |
---|
| 2 | int x; |
---|
| 3 | }; |
---|
| 4 | const int val = 12223344; |
---|
| 5 | void ?{}(T * t) { |
---|
| 6 | if (t->x == val) printf("uh-oh, constructed twice!\n"); |
---|
| 7 | t->x = val; |
---|
| 8 | } |
---|
| 9 | |
---|
| 10 | struct S { |
---|
| 11 | T t1, t2; |
---|
| 12 | }; |
---|
| 13 | |
---|
| 14 | void ?{}(S * this) { |
---|
| 15 | // construct both members |
---|
| 16 | } |
---|
| 17 | |
---|
| 18 | void ?{}(S * this, int x) { |
---|
| 19 | // forward |
---|
| 20 | ?{}(this); |
---|
| 21 | ?{}(&this->t1); |
---|
| 22 | } |
---|
| 23 | |
---|
| 24 | int main() { |
---|
| 25 | S s = 5; |
---|
| 26 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.