source: tests/errors/signature.cfa @ 686cb63

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

Added new tests for signature errors.
Moved several error tests to errors folder.
Moved tests with no expect to zombies folder.

  • Property mode set to 100644
File size: 176 bytes
Line 
1// No parameters
2void  ?{}();
3void ^?{}();
4void  ?=?();
5void  ?{}(void);
6void ^?{}(void);
7void  ?=?(void);
8
9// Wrong parameters
10void  ?{}(int);
11void ^?{}(int);
12void  ?=?(int);
Note: See TracBrowser for help on using the repository browser.