| 1234567891011121314151617181920 |
- // 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
- // CHECK:STDOUT: Interface: 5
- // CHECK:STDOUT: Op: 5
- // CHECK:STDOUT: result: 0
- package ExplorerTest api;
- fn Main() -> i32 {
- var lhs: i32 = 3;
- var rhs: i32 = 2;
- // Make sure that both the interface and operator work with i32. These rely on
- // builtin arithmetic more directly.
- Print("Interface: {0}", lhs.(AddWith(i32).Op)(rhs));
- Print("Op: {0}", lhs + rhs);
- return 0;
- }
|