aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/friend46.C
blob: b8695ccdaab7b2a8c3b5868e0fcc214b22251f56 (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
// { dg-do assemble  }
// Copyright (C) 2000, 2002 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 17 Nov 2000 <nathan@codesourcery.com>

// bug 43. Two failings, bison parser ickiness caused us to find the member
// named the same as a friend, and then when instantiating, we'd lookup in
// the wrong scope.

namespace X {
  template <class T> class P;
  
  template <class T> void operator- (const P<T>&);
  
  template <class T>
  struct V
  {
    V (const T&);
  
    void operator- ();
    friend void X::operator-<> (const P<T>& a);
  };
}

int main()
{
  X::V<double> b(1.0);

  return 0;
}