[VPlan] Add and use debug location for VPScalarCastRecipe.
[llvm-project.git] / libcxx / test / std / containers / sequences / list / list.cons / assign_copy.addressof.compile.pass.cpp
blob4d183b16154dbbc04d5785992edaa1734ef44ae1
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 // <list>
11 // list& operator=(const list& c);
13 // Validate whether the container can be copy-assigned with an ADL-hijacking operator&
15 #include <list>
17 #include "test_macros.h"
18 #include "operator_hijacker.h"
20 void test() {
21 std::list<operator_hijacker> lo;
22 std::list<operator_hijacker> l;
23 l = lo;