1// // Unit test for boost::lexical_cast.
2//
3// See http://www.boost.org for most recent version, including documentation.
4//
5// Copyright Antony Polukhin, 2013-2024.
6//
7// Distributed under the Boost
8// Software License, Version 1.0. (See accompanying file
9// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt).
10
11#include <boost/lexical_cast.hpp>
12
13int main()
14{
15 boost::lexical_cast<char*>(arg: "Hello");
16 return 1;
17}
18
19

source code of boost/libs/lexical_cast/test/to_pointer_test.cpp