view gcc/testsuite/g++.dg/torture/pr54647.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +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;
}