| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- // 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
- package ExplorerTest api;
- fn identFn( x: i32 ) -> i32{
- return x;
- }
- fn Main() -> i32 {
- var x : i32 = 7 % 2;
- if( x != 1){
- return 1;
- }
- x = (3*3) % 3;
- if( x != 0){
- return 2;
- }
- x = (4+4+4+4) % (2+1);
- if( x != 1){
- return 3;
- }
- x = 15 % (identFn(2)+1);
- if( x != 0){
- return 4;
- }
- x = -15 % 7;
- if( x != -1){
- return 5;
- }
- x = 15 % -7;
- if( x != 1){
- return 6;
- }
- x = -15 % -identFn(7);
- if( x != -1){
- return 7;
- }
- return 0;
- }
- // CHECK:STDOUT: result: 0
|