mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-07 23:47:39 +00:00

Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
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();
|
|
}
|