blob: 7e57ae1a7b14ca4e4b3629a6815de436f7eb4acd [file] [log] [blame]
Marshall Clow053d81c2016-07-21 05:31:24 +00001//===----------------------------------------------------------------------===//
2//
Chandler Carruth57b08b02019-01-19 10:56:40 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Marshall Clow053d81c2016-07-21 05:31:24 +00006//
7//===----------------------------------------------------------------------===//
8
Marshall Clow4069c2b2017-03-15 18:41:11 +00009// <string>
10// The strings's value type must be the same as the traits's char_type
Marshall Clow053d81c2016-07-21 05:31:24 +000011
Marshall Clow4069c2b2017-03-15 18:41:11 +000012#include <string>
13
14int main()
15{
16 std::basic_string<char, std::char_traits<wchar_t>> s;
17}