view gcc/testsuite/g++.dg/other/pr82032.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { dg-do compile } */
/* { dg-options "-O3 -Wno-return-type" } */

template <typename a> class b
{
public:
  typename a::aa operator[] (typename a::c) { }
};
class d
{
public:
  typedef long c;
  typedef int aa;
};
struct e
{
  int af[4];
  int ag;
};
b<d> f;
bool
g (e &i)
{
  for (int h; h; ++h)
    switch (f[h])
      {
      case 'x':
      case 'a':
	i.af[h] = 3;
	break;
      default:
	return false;
      }

  return true;
}