aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/operators1.C
diff options
context:
space:
mode:
authorno-author <no-author@gcc.gnu.org>2001-02-19 14:33:58 +0000
committerno-author <no-author@gcc.gnu.org>2001-02-19 14:33:58 +0000
commit81f958577f9cf907792e64814deee22eb8d4f280 (patch)
treeea0c47499a7187f73d7d489a24d19ad5fc42988d /gcc/testsuite/g++.old-deja/g++.brendan/operators1.C
parentf9555ee958bd43d88e090dd8d971cbc8ac9e78a1 (diff)
This commit was manufactured by cvs2svn to create taggcc-2_95_3-test4
'gcc-2_95_3-test4'. git-svn-id: https://gcc.gnu.org/svn/gcc/tags/gcc-2_95_3-test4@39882 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.brendan/operators1.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.brendan/operators1.C14
1 files changed, 0 insertions, 14 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.brendan/operators1.C b/gcc/testsuite/g++.old-deja/g++.brendan/operators1.C
deleted file mode 100644
index 89453f9f10c..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.brendan/operators1.C
+++ /dev/null
@@ -1,14 +0,0 @@
-// Build don't link:
-// GROUPS passed operators
-struct A {
- int x;
-};
-
-int operator()(A x,float y) { // MUST be a member function// ERROR - .*
- return 1;
-}
-
-int main() {
- A x;
- x(1.0); // ERROR - no match for call
-}