rust/tests/run-make/raw-dylib-inline-cross-dylib/lib_wrapper.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
137 B
Rust
Raw Normal View History

extern crate raw_dylib_test;
#[inline]
pub fn inline_library_function_calls_inline() {
raw_dylib_test::inline_library_function();
}