blob: 7a97cfebd6973e69aca2b53bcf4b8fe9b5d5f333 [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, 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.front()); }