summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/access10.C
blob: 8b4883c254bcd635c3a8c4b76d7bbf63152d2c16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// { dg-do compile }

// Origin: Giovanni Bajo <giovannibajo@libero.it>

// PR c++/10849: Incorrect access checking on template specialization.

class X {
  private:
    template <typename T> struct Y;
};

template <> struct X::Y<int> {};

template <typename T> struct X::Y {};

template struct X::Y<int>;