2
0
mirror of https://github.com/boostorg/phoenix.git synced 2026-02-18 14:22:09 +00:00
Files
phoenix/test/detail/aa_hello.cpp

21 lines
659 B
C++

/*=============================================================================
Copyright (c) 2001-2007 Joel de Guzman
Copyright (c) 2015 John Fletcher
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)
==============================================================================*/
// This a test to see why test fails with BenPope x86_64 Ubuntu
// clang- linux- 3.6~msan~c14_libc++
// The failure may well be in boost::report_errors();
#include <iostream>
int main()
{
std::cerr << "Hello, world!" << std::endl;
return 0;
}