1 //===----------------------------------------------------------------------===//
3 // 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
7 //===----------------------------------------------------------------------===//
9 // https://llvm.org/PR41018
10 // XFAIL: windows-dll && msvc
14 // template <class charT, class Traits, class Allocator>
15 // bool operator()(const basic_string<charT,Traits,Allocator>& s1,
16 // const basic_string<charT,Traits,Allocator>& s2) const;
21 #include "test_macros.h"
28 std::string
s2("aaaaaaA");
29 std::string
s3("BaaaaaA");
32 #ifndef TEST_HAS_NO_WIDE_CHARACTERS
34 std::wstring
s2(L
"aaaaaaA");
35 std::wstring
s3(L
"BaaaaaA");