blob: b9836bbcc5a897ff6abb18cf924dfa3ba093d660 [file] [log] [blame]
// Build don't link:
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);