view gcc/testsuite/g++.dg/template/access10.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// { 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>;