comparison gcc/testsuite/g++.old-deja/g++.oliva/typename1.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 1830386684a0
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 // { dg-do assemble }
2
3 // Copyright (C) 1999 Free Software Foundation
4
5 // by Alexandre Oliva <oliva@dcc.unicamp.br>
6 // based on bug report by Nick Rasmussen <nick@jive.org>
7
8 template <class T> struct foo;
9
10 template <class T> struct bar {
11 typedef int foo;
12 };
13
14 template <class T> struct baz {
15 typedef bar<T>::foo foo; // { dg-error "" } missing typename
16 };