blob: cd31a5f373f585492e5d9f76d4167cc63cdcf56f [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
//
//===----------------------------------------------------------------------===//
// <list>
// iterator insert(const_iterator position, size_type n, const value_type& x);
// Validate whether the operation properly guards against ADL-hijacking operator&
#include <list>
#include "test_macros.h"
#include "operator_hijacker.h"
void test(std::list<operator_hijacker>& l) { l.insert(l.begin(), l.size(), l.front()); }