blob: 6c061f267d2ddf6cfd6086a7c94a45dda7dad034 [file] [log] [blame]
// Part of the Crubit project, under the Apache License v2.0 with LLVM
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
pub fn add_two_integers(x: i32, y: i32) -> i32 {
x + y
}