2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / bool1.C
blobbaa4196bf39a33714399876b2b9c982d438d372b
1 // { dg-do assemble  }
2 // bool test case
5 void foo(int i) {
6   foo (true);
9 struct C {
10   void foo(int i) {
11     foo(true);
12   }
13   void bar(bool b) {
14     bar(0);
15   }