Commit 42fd06c9 by Martin v. Löwis

New test case.

From-SVN: r25724
parent 95a2ecfe
// Build don't link:
class A{
public:
enum Foo{f1,f2}; // gets bogus error - XFAIL
class B{
friend class A;
Foo f;
public:
B():f(f1){} // gets bogus error (inaccessible) - XFAIL
};
};
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