1 // Copyright 2023 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "build/rust/tests/test_rust_calling_cpp/cpp_library.h" 6 mul_by_2_in_cpp_library(int32_t a)7int32_t mul_by_2_in_cpp_library(int32_t a) { 8 return a * 2; 9 } 10