This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/29332] No error given for derived-to-inaccessible-base conversion in default arg.



------- Comment #1 from pinskia at gcc dot gnu dot org  2006-10-03 16:05 -------
We just don't error until you use the function, in that the following errors:
// line 1
class A {};
class B : private A { };

extern B b;

int f( A & = b); // ERROR

A & a = b; // ERROR

int x = f(); // ERROR


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29332


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]