OSDN Git Service

* parser.c (cp_parser_class_specifier): Set class location to that
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / typename1.C
1 // Origin: Volker Reichelt <reichelt@igpm.rwth-aachen.de>
2 // { dg-do compile }
3
4 template <class T>
5 class B : virtual T::A
6 {
7         typedef int INT;
8         INT i;
9 };