aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/operators1.C
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>1999-03-28 09:26:28 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>1999-03-28 09:26:28 +0000
commit9fd68c082693e2db323eee226f8f041a1a596cc9 (patch)
tree60bd2c4c9dd96be75e26bf7a55c401eb632b6850 /gcc/testsuite/g++.old-deja/g++.law/operators1.C
parent9f9d16c921fcede880ddba43b970b29f0f888d8f (diff)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/egcs_gc_branch@26036 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.law/operators1.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.law/operators1.C27
1 files changed, 0 insertions, 27 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.law/operators1.C b/gcc/testsuite/g++.old-deja/g++.law/operators1.C
deleted file mode 100644
index fa4c10cf3b9..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.law/operators1.C
+++ /dev/null
@@ -1,27 +0,0 @@
-// GROUPS passed operators
-// opr-conv file
-// Message-Id: <199301040217.AA04377@cypress.ucsc.edu>
-// From: "Dean R. E. Long" <dlong@cse.ucsc.edu>
-// Subject: conversion operator bug?
-// Date: Sun, 3 Jan 1993 18:17:20 -0800
-
-#include <stdio.h>
-class B {};
-
-class A {
- B *p;
-public:
- A() { p = 0; }
- operator B * () { return p; }
- operator B & () { return *p; }
-};
-
-main()
-{
- A a;
- B &b = (B &)a;
- B *bp = (B *)a;
- B &br = a.operator B&();
-// What's the right test?
- printf ("FAIL\n");
-}