aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/friend13.C
blob: 6eebf6b951f4942009c04019531133c8d885b12d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// { dg-do compile }

// Perform access checking to parameter and return type of 
// function template correctly when only specialization is friend.

template <class T>
typename T::Inner
foo () {
  return typename T::Inner();
}

class Outer {
  private:
    struct Inner {};

    friend Outer::Inner foo<Outer> ();
};

void f() {
  foo<Outer>();
}