OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / error29.C
1 // PR c++/33209
2
3 template<typename T> void foo(int, T::x); // { dg-error "T::x" }
4
5 template<template<typename> class T> void foo2(int, T<int>::x); // { dg-error "T<int>::x" }