blob: bb3b0805b5ad1515e2912c7b79ec8be7e8d27678 [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.
//
//===----------------------------------------------------------------------===//
#include <cstddef>
#include <type_traits>
// size_t should:
// 1. be in namespace std.
// 2. be the same sizeof as void*.
// 3. be an unsigned integral.
int main()
{
static_assert(sizeof(std::size_t) == sizeof(void*),
"sizeof(std::size_t) == sizeof(void*)");
static_assert(std::is_unsigned<std::size_t>::value,
"std::is_unsigned<std::size_t>::value");
static_assert(std::is_integral<std::size_t>::value,
"std::is_integral<std::size_t>::value");
}