blob: eacdc897220e7bb1f103287cb3864ca676a77de8 [file] [log] [blame]
// { dg-do assemble }
// Origin: Jason Merrill <jason@cygnus.com>
struct A { typedef int B; };
template <int B> struct C : public A {
B b;
void f();
};
template <int B>
void C<B>::f() {
B b;
}