aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.law/cvt6.C
blob: 0d00b74c9dab33b95a59f313f9cd1aa387998903 (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
26
27
28
// { dg-do assemble  }
// GROUPS passed conversions
// cvt file
// Message-Id: <9208261851.AA16997@josquin.media.mit.edu>
// From: bilmes@media.mit.edu
// Subject: gcc (g++) 2.2.2 constructing nested class from external scope
// Date: Wed, 26 Aug 92 14:51:17 -0400


class foo {

  class bar {
    int i;
  public:
    bar(int j) { i = j; }
  };

  bar b;
public:
  foo() : b(3) {}
  void test(bar lb) { b = lb; }
};


int main() {
  foo f;
  f.test(34);  // line 18
}