2013-03-25 21:03:19 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// 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>
|
|
|
|
|
|
|
|
// Decrement iterator prior to begin.
|
|
|
|
|
|
|
|
#if _LIBCPP_DEBUG2 >= 1
|
|
|
|
|
2013-03-26 15:28:25 +01:00
|
|
|
#define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0))
|
2013-03-25 21:03:19 +01:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <cassert>
|
|
|
|
#include <iterator>
|
|
|
|
#include <exception>
|
|
|
|
#include <cstdlib>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
typedef int T;
|
|
|
|
typedef std::vector<T> C;
|
|
|
|
C c(1);
|
|
|
|
C::iterator i = c.end();
|
|
|
|
--i;
|
|
|
|
assert(i == c.begin());
|
|
|
|
--i;
|
|
|
|
assert(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|