aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/lookup15.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.other/lookup15.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.other/lookup15.C37
1 files changed, 0 insertions, 37 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.other/lookup15.C b/gcc/testsuite/g++.old-deja/g++.other/lookup15.C
deleted file mode 100644
index be9096a3be1..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.other/lookup15.C
+++ /dev/null
@@ -1,37 +0,0 @@
-// Build don't link:
-// Origin: Benjamin Kosnik <bkoz@cygnus.com>
-
-class b
-{
- int j;
-public:
- b(int a = 6): j(a) {}
- void imbue(int a) {++j;}
-};
-
-class d: public b
-{
- int k;
-public:
- d(int a = 7): b(a), k(a) {}
- void imbue(int a) {++k;}
-};
-
-//virtual public kills, public ok
-class mostd: virtual public d
-{
- int l;
-public:
- mostd(int a = 9): d(a), l(a) {}
-};
-
-int main() {
-
- d dobj;
- dobj.imbue(5);
-
- mostd mobj;
- mobj.imbue(5);
-
- return 0;
-}