aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/overload/autoptr1.C
blob: fc81083500ec08cfc31e832364c6c6ebe6387665 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// PR c++/35773

template< typename T >
class auto_ptr
{
  struct auto_ptr_ref { };
public:
  auto_ptr(auto_ptr&);
  auto_ptr(auto_ptr_ref);

  operator auto_ptr_ref();
};

template< typename T >
class reference_wrapper
{
public:
  reference_wrapper(T& t);
  operator T& () const;
};

struct X { };

void f(auto_ptr< X >);

void g(reference_wrapper< auto_ptr< X > > r)
{
  f(r);
}