aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/bool6.C
blob: b8db8722b8fd1e67ea88fdfd96a88406d413af1f (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;

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