diff options
Diffstat (limited to 'tools/regression/test/run-fail.cpp')
-rw-r--r-- | tools/regression/test/run-fail.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/regression/test/run-fail.cpp b/tools/regression/test/run-fail.cpp new file mode 100644 index 0000000000..21c0caa1a0 --- /dev/null +++ b/tools/regression/test/run-fail.cpp @@ -0,0 +1,11 @@ +// (C) Copyright Beman Dawes 2003. Distributed under the Boost +// Software License, Version 1.0. (See accompanying file +// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + +#include <iostream> + +int main() +{ + std::cout << "example of output from a run-time failure\n"; + return 1; +} |