aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/scope5.C
blob: 2aea15bd94c212b1fc6b62ab84d17f5afdf55742 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Build don't link: 
// GROUPS passed scoping
// local-class file
// From: schlaege@methusalix.ert.rwth-aachen.de (Chris Schlaeger H Zivojnovic)
// Date:     Tue, 10 Aug 93 16:50:33 +0200
// Subject:  Bug report
// Message-ID: <9308101450.AA28016@methusalix.ert.rwth-aachen.de>

main()
{
        class foo
        {
                int i;
        } ;
        class bar
        {
                public:
                        bar() { y = 0; }
                        void f() { foo x; }
                private:
                        int y;
        } ;

        bar     c;
}