标签: c++ decltype
可能重复: Behavior of decltype.
下面的代码不应该编译吗?
std::vector<int> numbers_; decltype(numbers_)::size_type index = 0;