Commit 81ce6e9a by Jason Merrill

new

From-SVN: r18283
parent 5f311aec
template <class T> struct A {
template <class U> struct B {
template <class V> void f (V) { }
void g () { }
};
};
main ()
{
A<int>::B<char> b;
b.f (42);
b.g ();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment