summaryrefslogtreecommitdiffstats
path: root/src/test/ui/extern/extern-mod-ordering-exe.rs
blob: d7cc4dffb440a125461825db2e7d4bd64e395196 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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();
}