(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.pt/
call1.C
// { dg-do assemble  }

struct IsCompressed { };
struct Field {
  bool IsCompressed() const { return true; }
};

template<class C>
inline bool
for_each(const Field& p, IsCompressed, C)
{
  return p.IsCompressed();
}

template bool for_each<int>(const Field& p, IsCompressed, int);