simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / template / friend10.C
blob49e753184701eedd704ed0e59d786613e02340bb
1 // { dg-do run }
2 // { dg-skip-if "requires hosted libstdc++ for iostream" { ! hostedlib } }
4 // Copyright (C) 2002 Free Software Foundation, Inc.
5 // Contributed by Nathan Sidwell 24 Dec 2002 <nathan@codesourcery.com>
7 // PR 5116. template instantiation can add a friend into a namespace,
8 // and thus change overload resolution.
10 #include <iostream>
12 static int right;
13 static int wrong;
15 struct Buggy {};
17 template <typename T>struct Handle
19   Handle(T* p) {}
20   
21   operator bool() const { wrong++; return true; }
22   
23   friend std::ostream& operator<<(std::ostream& ostr, const Handle& r)
24   {
25     right++;
26     
27     return ostr << "in operator<<(ostream&, const Handle&)";
28   }
31 typedef Handle<Buggy>     Buggy_h;
33 bool cmp (const Buggy_h& b1, const Buggy_h& b2)
35   std::cout << b1 << " " << b2 << std::endl;
36   return false;
39 int main()
41   Buggy o;
42   
43   cmp (&o, &o);
45   return !(right == 2 && !wrong);