8sa1-gcc/gcc/testsuite/g++.old-deja/g++.law/cvt6.C
Jeff Law 921e5a0eb4 Initial revision
From-SVN: r14840
1997-08-19 01:34:40 -06:00

29 lines
464 B
C

// Build don't link:
// 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; }
};
main() {
foo f;
f.test(34); // line 18
}