about summary refs log tree commit diff
path: root/tests/ui/extern/extern-mod-ordering-exe.rs
blob: 9f5e52e33955c0737586c8a27be1c2e84c92a61f (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ run-pass
//@ aux-build:extern_mod_ordering_lib.rs


extern crate extern_mod_ordering_lib;

use extern_mod_ordering_lib::extern_mod_ordering_lib as the_lib;

pub fn main() {
    the_lib::f();
}