blob: 4d6a1e438e693b1bbe4e2776f55c6627ea31c32c [file] [log] [blame]
// { dg-do assemble }
// Testcase for handling of typedef wierdness.
template <class T>
struct A
{
typedef enum
{
foo
} B;
A (B b);
};
template <class T>
A<T>::A (B b)
{
}