Last change
on this file since dfe8f78 was 4d23dd2, checked in by Thierry Delisle <tdelisle@…>, 5 years ago |
Added tests cases for some of the opened tickets
|
-
Property mode
set to
100644
|
File size:
298 bytes
|
Rev | Line | |
---|
[4d23dd2] | 1 | // Trac ticket
|
---|
| 2 | // https://cforall.uwaterloo.ca/trac/ticket/92
|
---|
| 3 |
|
---|
| 4 | struct fred{};
|
---|
| 5 |
|
---|
| 6 | void ?{}(fred & this, int count = 1);
|
---|
| 7 | void ?{}(fred & this, fred & other) = void;
|
---|
| 8 | void ^?{}(fred & this);
|
---|
| 9 | fred ?=?(fred & this, const fred & other) = void;
|
---|
| 10 |
|
---|
| 11 | struct superFred {
|
---|
| 12 | fred f;
|
---|
| 13 | };
|
---|
| 14 |
|
---|
| 15 | void foo() {
|
---|
| 16 | superFred f;
|
---|
| 17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.