aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/bool6.C
blob: 493e25f73f3f6cc3b6afbd1f22595416d97a988b (plain)
1
2
3
4
5
6
7
8
9
// Bug:  The conversion from bool to int gets stripped.
// Build don't link:

bool b;

int main ()
{
  return ((!b) != 0);
}