view gcc/testsuite/g++.dg/torture/pr54647.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { dg-do compile }

class A
{
};
template <class type> struct D:A
{
  type & operator[](int);
};
struct B
{
  typedef D <int *>Row;
  struct C
    {
      Row *row;
    };
};
B::C a;
B::Row & b = *a.row;
void
fn1 ()
{
  while (1)
    b[0] = b[0] ? (int *) -1 : 0;
}