source: examples/Misc.c @ f9bf142

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

Moved up many directories in source

  • Property mode set to 100644
File size: 230 bytes
Line 
1// interesting corner cases
2
3int a;
4int b;
5float b;
6
7void g( int );
8void g( unsigned );
9
10void f( void ) {
11        g( (a, b) );
12        g( (a, a, b) );
13        g( sizeof a );
14        g( sizeof( int ) );
15}
16
17// Local Variables: //
18// tab-width: 4 //
19// End: //
Note: See TracBrowser for help on using the repository browser.