OSDN Git Service

PR c++/28606
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / tmpl-outside1.C
1 // PR c++/3792
2 // Origin: <david.abrahams@rcn.com>
3 // { dg-do compile }
4
5 struct X
6 {
7    template <int i> struct Y {};
8 };
9
10 typedef X::template Y<0> y; // { dg-error "template" }
11 // { dg-bogus "with no type" "" { xfail *-*-* } 10 }