921e5a0eb4
From-SVN: r14840
15 lines
278 B
C
15 lines
278 B
C
// Build don't link:
|
|
// GROUPS passed visibility
|
|
struct base
|
|
{
|
|
protected:
|
|
void base_func() {}// ERROR - .*is protected.*
|
|
};
|
|
|
|
struct derived : public base
|
|
{
|
|
protected:
|
|
void derived_func(base *ptr) { ptr->base_func(); }// ERROR - within this context
|
|
};
|
|
|