OSDN Git Service

Initial revision
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.mike / bool1.C
1 // bool test case
2
3 // Build don't link:
4
5 void foo(int i) {
6   foo (true);
7 }
8
9 struct C {
10   void foo(int i) {
11     foo(true);
12   }
13   void bar(bool b) {
14     bar(0);
15   }
16 };