| 123456789101112131415161718192021222324 |
- // 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
- //
- // RUN: %{explorer} %s 2>&1 | \
- // RUN: %{FileCheck} --match-full-lines --allow-unused-prefixes=false %s
- // RUN: %{explorer} --parser_debug --trace_file=- %s 2>&1 | \
- // RUN: %{FileCheck} --match-full-lines --allow-unused-prefixes %s
- // AUTOUPDATE: %{explorer} %s
- // CHECK: Interface: 2
- // CHECK: Op: 2
- // CHECK: result: 0
- package ExplorerTest api;
- fn Main() -> i32 {
- var lhs: i32 = 8;
- var rhs: i32 = 3;
- // Make sure that both the interface and operator work with i32. These rely on
- // builtin arithmetic more directly.
- Print("Interface: {0}", lhs.(ModWith(i32).Op)(rhs));
- Print("Op: {0}", lhs % rhs);
- return 0;
- }
|