blob: 2904e4a2e7c41b5ecb60e9870b82c1d72c1e95f2 [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.
//
//===----------------------------------------------------------------------===//
// <typeindex>
// class type_index
// type_index(const type_info& rhs);
#include <typeindex>
#include <cassert>
int main()
{
std::type_index t1 = typeid(int);
}