source: trunk/src/gcc/gcc/testsuite/g++.old-deja/g++.jason/access22.C@ 2

Last change on this file since 2 was 2, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 264 bytes
Line 
1// PRMS Id: 8518
2// Bug: Call to foo is not checked for accessibility
3
4class A
5{
6 private:
7 static void foo() {} // ERROR -
8 public:
9 void goo() {}
10};
11
12struct B : public A
13{
14 void func() { foo(); } // ERROR -
15};
16
17int main()
18{
19 B b;
20 b.func();
21}
Note: See TracBrowser for help on using the repository browser.