// Testcase for uses of bool.
// Build don't link:
int i,j,k;
/* Check that types of certain expressions are bool. */
void f ()
{
i ? j == k : true;
i ? j < k : true;
i ? j && k : true;
}
/*
// bool.h - boolean type
//
// libgm++: Graphics Math Library
// Ferdi Scheepers and Stephen F May
// 15 June 1994
#ifndef BOOL_H
#define BOOL_H
typedef int bool;
enum { false, true };
#endif
// Testcase for uses of bool.
// Build don't link:
int i,j,k;
/* Check that types of certain expressions are bool. */
void f ()
{
i ? j == k : true;
i ? j < k : true;
i ? j && k : true;
}
/*