blob: 493e25f73f3f6cc3b6afbd1f22595416d97a988b [file] [log] [blame]
// Bug: The conversion from bool to int gets stripped.
// Build don't link:
bool b;
int main ()
{
return ((!b) != 0);
}