blob: 80ca023cb8de4a427bdd5c1904dd94ebb891e7dc [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <typeindex>
// class type_index
// bool operator==(const type_index& rhs) const;
// bool operator!=(const type_index& rhs) const;
#include <typeindex>
#include <cassert>
#include "test_macros.h"
int main(int, char**)
{
std::type_index t1 = typeid(int);
std::type_index t2 = typeid(int);
std::type_index t3 = typeid(long);
assert(t1 == t2);
assert(t1 != t3);
return 0;
}