aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/p5793.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.mike/p5793.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.mike/p5793.C21
1 files changed, 0 insertions, 21 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.mike/p5793.C b/gcc/testsuite/g++.old-deja/g++.mike/p5793.C
deleted file mode 100644
index 53469cdf07a..00000000000
--- a/gcc/testsuite/g++.old-deja/g++.mike/p5793.C
+++ /dev/null
@@ -1,21 +0,0 @@
-// Build don't link:
-// prms-id: 5793
-
-class temp_string {
- public:
- temp_string (const int);
- temp_string (const char * const);
-};
-
-class Range {
- public:
- Range ( const int);
- operator int () const ;
-};
-
-int operator == (const int, temp_string );
-
-void CheckArrayConstraints(void) {
- if (Range(0L) == 0L)
- ;
-}