c1ca2e1e8b
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@177908 91177308-0d34-0410-b5e6-96231b3b80d8
47 lines
847 B
C++
47 lines
847 B
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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>
|
|
|
|
// Compare iterators from different containers with <.
|
|
|
|
#if _LIBCPP_DEBUG2 >= 1
|
|
|
|
#define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::terminate())
|
|
|
|
#include <vector>
|
|
#include <cassert>
|
|
#include <iterator>
|
|
#include <exception>
|
|
#include <cstdlib>
|
|
|
|
void f1()
|
|
{
|
|
std::exit(0);
|
|
}
|
|
|
|
int main()
|
|
{
|
|
std::set_terminate(f1);
|
|
typedef int T;
|
|
typedef std::vector<T> C;
|
|
C c1;
|
|
C c2;
|
|
bool b = c1.begin() < c2.begin();
|
|
assert(false);
|
|
}
|
|
|
|
#else
|
|
|
|
int main()
|
|
{
|
|
}
|
|
|
|
#endif
|