Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
13 lines
195 B
Rust
13 lines
195 B
Rust
//@ run-pass
|
|
//@ aux-build:anon-extern-mod-cross-crate-1.rs
|
|
|
|
extern crate anonexternmod;
|
|
|
|
use anonexternmod::rust_get_test_int;
|
|
|
|
pub fn main() {
|
|
unsafe {
|
|
rust_get_test_int();
|
|
}
|
|
}
|