| 1234567891011121314151617181920212223242526272829303132333435 |
- // 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
- //
- // 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[addr 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
- }
|