// // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo // // The contents of this file are covered under the licence agreement in the // file "LICENCE" distributed with Cforall. // // s.c -- // // Author : Richard C. Bilson // Created On : Wed May 27 17:56:53 2015 // Last Modified By : Peter A. Buhr // Last Modified On : Sun Jan 3 22:38:45 2016 // Update Count : 3 // //int ?!=?( int, int ); void f() { int a; a ? 4 : 5; 1 ? 4 : 5; 0 ? 4 : 5; } // Local Variables: // // tab-width: 4 // // compile-command: "cfa s.c" // // End: //