Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / overload / operator1.C
blobf4d1f53f14e4ccdd0d94ea9a87ef867d5ef5df39
1 typedef struct _GdkDrawable GdkDrawable; 
2 typedef struct _GdkDrawable GdkBitmap; 
3 typedef struct _GdkDrawable GdkPixmap; 
4  
5 class Drawable 
6
7 public: 
8  operator GdkDrawable* () const; 
9 }; 
12 class Pixmap : public Drawable 
13
14 public: 
15  operator GdkPixmap* () const; 
17 }; 
20 class Bitmap : public Pixmap 
21
22 public: 
23   operator GdkBitmap* () const; 
25 }; 
27 class Event 
28
29 }; 
31 Bitmap::operator GdkBitmap* () const 
32
33  return  0; 
34