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