// { dg-do compile }// Origin: jbrandmeyer at users dot sourceforge dot net// PR c++/12573: COMPONENT_REFs must be inspected for dependness.// Or, more specifically OFFSETOF.template<bool>structS;template<typenameK>structY{intx;};template<classT>structZ{S<(bool)(__builtin_offsetof(Y<T>*,x)==0)>s;};