quoted_traits.fail.cpp revision 62f34be0baf276c2b310db8bda0d358841ebab9a
1//===----------------------------------------------------------------------===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// <iomanip>
11
12// quoted
13
14#include <iomanip>
15#include <sstream>
16#include <string>
17#include <cassert>
18
19#if _LIBCPP_STD_VER > 11
20
21template <class charT>
22struct test_traits
23{
24    typedef charT     char_type;
25};
26
27void round_trip ( const char *p ) {
28    std::stringstream ss;
29    ss << std::quoted(p);
30    std::basic_string<char, test_traits<char>> s;
31    ss >> std::quoted(s);
32    }
33
34
35
36int main()
37{
38    round_trip ( "Hi Mom" );
39}
40#else
41#error
42#endif
43