// Part of the Carbon Language project, under the Apache License v2.0 with LLVM // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // // INCLUDE-FILE: toolchain/testing/testdata/min_prelude/full.carbon // TODO: Add ranges and switch to "--dump-sem-ir-ranges=only". // EXTRA-ARGS: --dump-sem-ir-ranges=if-present // // AUTOUPDATE HEADER package User; class C {}; impl C as Core.INTERFACEWith(C) where .Result = C { fn Op[self: C](other: C) -> C { return {}; } } impl C as Core.INTERFACEAssignWith(C) { fn Op[ref self: C](other: C) {} } fn TestOp(a: C, b: C) -> C { //@dump-sem-ir-begin return a OP b; //@dump-sem-ir-end } fn TestAssign(a: C*, b: C) { //@dump-sem-ir-begin *a OP= b; //@dump-sem-ir-end }