summaryrefslogtreecommitdiffstats
path: root/src/test/ui/cross-crate/moves-based-on-type-cross-crate.rs
blob: 3881e3352202ffda80155cfe7181ccee850e3443 (plain)
1
2
3
4
5
6
7
8
9
10
11
// run-pass
// aux-build:moves_based_on_type_lib.rs

// pretty-expanded FIXME #23616

extern crate moves_based_on_type_lib;
use moves_based_on_type_lib::f;

pub fn main() {
    f();
}