blob: 1d54238ae0c08be4957d8c5f1aac952ab6d957a5 [file] [log] [blame]
Marshall Clow053d81c2016-07-21 05:31:24 +00001//===----------------------------------------------------------------------===//
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
Marshall Clow4069c2b2017-03-15 18:41:11 +000010// <string>
11// The strings's value type must be the same as the traits's char_type
Marshall Clow053d81c2016-07-21 05:31:24 +000012
Marshall Clow4069c2b2017-03-15 18:41:11 +000013#include <string>
14
15int main()
16{
17 std::basic_string<char, std::char_traits<wchar_t>> s;
18}