blob: 77b92eca1665b005c81f864d7cf7eb016f76c05b [file] [log] [blame]
struct ZZ {
int p;
};
template <int ZZ::* ptr>
struct YY {
ZZ qq;
YY() { }
};
int main() {
YY<&ZZ::p> ww;
}