about summary refs log tree commit diff
path: root/tests/ui/cross-crate/moves-based-on-type-cross-crate.rs
blob: 3e05717326c431531f87c39389a960110b81e51d (plain)
1
2
3
4
5
6
7
8
9
10
//@ run-pass
//@ aux-build:moves_based_on_type_lib.rs


extern crate moves_based_on_type_lib;
use moves_based_on_type_lib::f;

pub fn main() {
    f();
}