2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / p5793.C
blobdb6e658aa4f59cae625a88cde2238571076264be
1 // { dg-do assemble  }
2 // prms-id: 5793
4 class temp_string {
5  public:
6   temp_string (const int);
7   temp_string (const char * const);
8 };
10 class Range { 
11  public:
12   Range ( const int);
13   operator int () const ;
16 int operator == (const int, temp_string );
18 void CheckArrayConstraints(void)    { 
19   if (Range(0L) == 0L)
20     ;