This is probably the reason for
Try this:
template<class X, bool=&X::x> struct Check_x_t;
template<class P> bool Check_x(P p, Check_x_t<P>* = 0) { return true; }
template<class P> bool Check_x(P p, ...) { return false; }
struct P1 {int x; };
struct P2 {int X; };
void test()
{
P1 p1; P2 p2;
Check_x(p1); // returns true
Check_x(p2); // returns false
}
The following link explains why your first solution is failing on certain compilers:
http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2634.html
(it fails on Comeau as well as VC).
