// 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 // // NOAUTOUPDATE 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; } // CHECK:STDOUT: Interface: 5 // CHECK:STDOUT: Op: 5 // CHECK:STDOUT: result: 0