aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.law/access3.C
blob: 3a6acb922273835136071e8bd7649cd8bb29f743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// { dg-do assemble  }
// GROUPS passed access
// unsorted.2 file
// Date: Sat, 6 Jun 1992 18:23:03 -0400
// From: Brendan Kehoe <brendan@cs.widener.edu>
// Message-Id: <199206062223.AA22653@betty.cs.widener.edu>
// Subject: bug with access control to member functions

       class X {
	     void g (int); // { dg-error "" } is private
        public:
          void g (double);
        };

        class Y : public X { void f() { g (1); } };// { dg-error "" }