1 // PR c++/88196
2 // { dg-do compile { target c++2a } }
3 
4 struct C { C *c; };
5 template <C> struct D;
6 D <&C::c> d; // { dg-error "could not convert" }
7