Files
carbon-lang/explorer/testdata/operators/inc_dec.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

49 lines
960 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: 6
// CHECK:STDOUT: 5
// CHECK:STDOUT: 6
// CHECK:STDOUT: 5
// CHECK:STDOUT: 6
// CHECK:STDOUT: 5
// CHECK:STDOUT: 6
// CHECK:STDOUT: 5
// CHECK:STDOUT: result: 0
package ExplorerTest api;
class A { var n: i32; }
external impl A as Inc {
fn Op[addr self: Self*]() { ++self->n; }
}
external impl A as Dec {
fn Op[addr self: Self*]() { --self->n; }
}
fn Main() -> i32 {
var a: A = {.n = 5};
++a.n;
Print("{0}", a.n);
--a.n;
Print("{0}", a.n);
++a;
Print("{0}", a.n);
--a;
Print("{0}", a.n);
a.n.(Inc.Op)();
Print("{0}", a.n);
a.n.(Dec.Op)();
Print("{0}", a.n);
a.(Inc.Op)();
Print("{0}", a.n);
a.(Dec.Op)();
Print("{0}", a.n);
return 0;
}