blob: 0359ff989b82354fcd86db7919d0a4a6e99d0680 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
// <vector>
// pointer data();
#include <vector>
#include <cassert>
int main()
{
{
std::vector<int> v;
assert(v.data() == 0);
}
{
std::vector<int> v(100);
assert(v.data() == &v.front());
}
}