blob: 5f696ba082ee25ef45d7618dd5225f8e21c87666 [file] [log] [blame] [edit]
// 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 mod module {
pub fn function() {}
#[derive(Default)]
pub struct Type {
pub x: i32,
}
}
pub use module::function;
pub use module::Type;