blob: 7cb64f85d0d0c9ebea3221bb53c564c6aab82b85 [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>
// const_pointer data() const;
#include <vector>
#include <cassert>
#include "min_allocator.h"
int main()
{
{
const std::vector<int> v;
assert(v.data() == 0);
}
{
const std::vector<int> v(100);
assert(v.data() == &v.front());
}
#if __cplusplus >= 201103L
{
const std::vector<int, min_allocator<int>> v;
assert(v.data() == 0);
}
{
const std::vector<int, min_allocator<int>> v(100);
assert(v.data() == &v.front());
}
#endif
}