Revert "[Analyzer][CFG] Correctly handle rebuilt default arg and default init express...
[llvm-project.git] / libcxx / test / std / input.output / string.streams / helper_concepts.h
blob18f6e5474164c57a82f595d13b72bb14fe11c638
1 //===----------------------------------------------------------------------===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef TEST_STD_INPUTOUTPUT_STRINGSTREAMS_HELPER_CONCEPTS_H
10 #define TEST_STD_INPUTOUTPUT_STRINGSTREAMS_HELPER_CONCEPTS_H
12 template <typename S, typename T>
13 concept is_valid_argument_for_str_member = requires(S s, const T& sv) {
14 { s.str(sv) };
17 #endif // TEST_STD_INPUTOUTPUT_STRINGSTREAMS_HELPER_CONCEPTS_H