1template <typename> struct _Vector_base {};
2struct vector {
3  vector() {}
4  vector(_Vector_base<int>);
5};
6