rust/tests/ui/extern/extern-mod-ordering-exe.rs

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

13 lines
230 B
Rust
Raw Normal View History

//@ run-pass
//@ aux-build:extern_mod_ordering_lib.rs
//@ pretty-expanded FIXME #23616
extern crate extern_mod_ordering_lib;
use extern_mod_ordering_lib::extern_mod_ordering_lib as the_lib;
pub fn main() {
the_lib::f();
}