blob: 8d674c9f127e355be9ae7fd4ee7f1989fb445cd4 [file] [log] [blame]
// Testcase for handling of typedef wierdness.
// Build don't link:
template <class T>
struct A
{
typedef enum
{
foo
} B;
A (B b);
};
template <class T>
A<T>::A (B b)
{
}