source: src/Tests/ResolvExpr/ShortCircuit.c @ 86bd7c1f

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newstringwith_gc
Last change on this file since 86bd7c1f was 843054c2, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

licencing: seventh groups of files

  • Property mode set to 100644
File size: 177 bytes
Line 
1int ?!=?( int, int );
2int ?!=?( float, float );
3int 0;
4
5void g( float );
6void g( int );
7
8void f( int a )
9{
10  int b;
11  float c;
12  g( a ? b : c );
13  g( a && c );
14  g( a || b );
15}
Note: See TracBrowser for help on using the repository browser.