blob: 4b7532678f2e57961f407896f3c20414e44d0055 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <string>
// iterator insert(const_iterator p, size_type n, charT c);
// REQUIRES: has-unix-headers
// UNSUPPORTED: !libcpp-has-legacy-debug-mode, c++03
#include <string>
#include "check_assertion.h"
template <class S>
void test() {
S s;
S s2;
TEST_LIBCPP_ASSERT_FAILURE(s.insert(s2.begin(), 1, 'a'),
"string::insert(iterator, n, value) called with an iterator not referring to this string");
}
int main(int, char**) {
test<std::string>();
return 0;
}