forked from boostorg/core
Compare commits
1 Commits
esp-idf-co
...
feature/cr
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fa140d66d4 |
@@ -169,3 +169,5 @@ run no_exceptions_support_test.cpp : : : <exception-handling>off : no_exceptions
|
||||
|
||||
use-project /boost/core/swap : ./swap ;
|
||||
build-project ./swap ;
|
||||
|
||||
run crtdbg_test.cpp ;
|
||||
|
||||
13
test/crtdbg_test.cpp
Normal file
13
test/crtdbg_test.cpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#include <boost/core/lightweight_test.hpp>
|
||||
#include <vector>
|
||||
|
||||
int main()
|
||||
{
|
||||
BOOST_TEST(true);
|
||||
|
||||
std::vector<int> v;
|
||||
std::vector<int>::iterator i = v.end();
|
||||
++i;
|
||||
|
||||
return boost::report_errors();
|
||||
}
|
||||
Reference in New Issue
Block a user