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

// Origin: Francesco Monica <fmonica@ce.unipr.it>

// PR c++/13262: Access checking during instantiation of static data
// member.

template <typename T> class Aclass {
  private:
    Aclass() {}
    static Aclass instance;
};

template <typename T> Aclass<T> Aclass<T>::instance;

template class Aclass<int>;