minix/external/bsd/libc++/dist/libcxx/test/utilities/type.index/type.index.members/hash_code.pass.cpp

25 lines
608 B
C++
Raw Normal View History

//===----------------------------------------------------------------------===//
//
// 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.
//
//===----------------------------------------------------------------------===//
// <typeindex>
// class type_index
// size_t hash_code() const;
#include <typeindex>
#include <cassert>
int main()
{
const std::type_info& ti = typeid(int);
std::type_index t1 = typeid(int);
assert(t1.hash_code() == ti.hash_code());
}