source: tests/bugs/92.cfa @ 4d23dd2

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 4d23dd2 was 4d23dd2, checked in by Thierry Delisle <tdelisle@…>, 4 years ago

Added tests cases for some of the opened tickets

  • Property mode set to 100644
File size: 298 bytes
Line 
1// Trac ticket
2// https://cforall.uwaterloo.ca/trac/ticket/92
3
4struct fred{};
5
6void  ?{}(fred & this, int count = 1);
7void  ?{}(fred & this, fred & other) = void;
8void ^?{}(fred & this);
9fred ?=?(fred & this, const fred & other) = void;
10
11struct superFred {
12        fred f;
13};
14
15void foo() {
16        superFred f;
17}
Note: See TracBrowser for help on using the repository browser.