Files
carbon-lang/explorer/testdata/operators/mod.carbon
T
Richard Smith 2fd7e2b65d Add support for compound assignment and increment (#2526)
Add support for user-defined assignment, as well as compound assignment and increment, following the design direction in pending proposal #2511.

Some of this isn't fully testable yet: because explorer doesn't properly support `impl` specialization, the blanket `impl`s in the prelude prevent types from customizing assignment.
2023-01-20 18:48:13 -08:00

30 lines
671 B
Plaintext

// 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
//
// AUTOUPDATE
// RUN: %{explorer-run}
// RUN: %{explorer-run-trace}
// CHECK:STDOUT: 7
// CHECK:STDOUT: 3
// CHECK:STDOUT: 0
// CHECK:STDOUT: result: 0
package ExplorerTest api;
class A { var n: i32; }
external impl A as ModWith(i32) where .Result = A {
fn Op[self: Self](rhs: i32) -> A { return {.n = self.n % rhs}; }
}
fn Main() -> i32 {
var a: A = {.n = 15};
a = a % 8;
Print("{0}", a.n);
a %= 4;
Print("{0}", a.n);
Print("{0}", (a % 3).n);
return 0;
}