C++程序  |  6行  |  106 B

template <typename> struct _Vector_base {};
struct vector {
  vector() {}
  vector(_Vector_base<int>);
};