Commit a8b0896f by Mark Mitchell

New test

From-SVN: r21621
parent debed82c
// Build don't link:
// Special g++ Options:
class A
{
protected:
void f1() {};
};
template <class T> class B : private A {
protected:
using A::f1;
};
template <class T> class D : private B<T>
{
public:
void f2() { f1(); };
};
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