aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/visibility2.C
blob: 09e0f6591ae9a454b3f345c76dc17b46371f83ba (plain)
1
2
3
4
5
6
7
8
9
10
// Build don't link: 
// GROUPS passed visibility
class X {
      void g (int); // ERROR - private
public:
  void g (double);
};
	
class Y : public X { void f() { g (1); } }; // ERROR - private