//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // const_pointer data() const; #include #include int main() { { const std::vector v; assert(v.data() == 0); } { const std::vector v(100); assert(v.data() == &v.front()); } }