blob: 47524d2c34d90367bf9053c7c07108149bcfd1d5 [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
JF Bastien2df59c52019-02-04 20:31:13 +000014int main(int, char**)
Marshall Clow4069c2b2017-03-15 18:41:11 +000015{
16 std::basic_string<char, std::char_traits<wchar_t>> s;
JF Bastien2df59c52019-02-04 20:31:13 +000017
18 return 0;
Marshall Clow4069c2b2017-03-15 18:41:11 +000019}