// { dg-do compile } // Origin: Giovanni Bajo // PR c++/13092: ICE taking address of member which is non-dependent struct S { int i; }; template struct X {}; template struct Foo { X<&S::i> x; }; template struct Foo;