blob: 83569dd3f3a091b2c284dbcec678345538c66d08 [file] [log] [blame]
// { dg-do assemble }
// Copyright (C) 1999 Free Software Foundation
// by Alexandre Oliva <oliva@dcc.unicamp.br>
// based on bug report by Nick Rasmussen <nick@jive.org>
template <class T> struct foo;
template <class T> struct bar {
typedef int foo;
};
template <class T> struct baz {
typedef bar<T>::foo foo; // { dg-error "" } missing typename
};