Commit 531d8d47 by Jason Merrill

new

From-SVN: r23706
parent ff350acd
// Build don't link:
template <class T> struct A {
template <class U> struct B;
};
template <class T> template <class U> struct A<T>::B { };
A<int>::B<int> b;
// Build don't link:
template <class T> struct A {
template <class U> struct B;
};
template <class T> template <class U> struct A<T>::B<U*> { };
A<int>::B<int*> b;
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