mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 02:31:13 +00:00
11 lines
194 B
Rust
11 lines
194 B
Rust
//@ run-pass
|
|
//@ aux-build:issue-11225-3.rs
|
|
|
|
|
|
extern crate issue_11225_3;
|
|
|
|
pub fn main() {
|
|
issue_11225_3::public_inlinable_function();
|
|
issue_11225_3::public_inlinable_function_ufcs();
|
|
}
|