summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/torture/pr41144.C
blob: 64dc117d7c69120fc8669d03de1b6cd1d6eb1566 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* { dg-do compile } */

struct rgba8;
template<class ColorT> class span_gouraud     {
public:
    struct coord_type { };
    coord_type m_coord[3];
};
template<class ColorT> class span_gouraud_rgba : public span_gouraud<ColorT>   
{
  typedef ColorT color_type;
  typedef span_gouraud<color_type> base_type;
  typedef typename base_type::coord_type coord_type;
public:
  void prepare()         {
      coord_type coord[3];
  }
};
void the_application() {
    typedef span_gouraud_rgba<rgba8> gouraud_span_gen_type;
    gouraud_span_gen_type span_gouraud;
    span_gouraud.prepare();
}