rust/tests/ui/cross-crate/moves-based-on-type-cross-c...

12 lines
187 B
Rust

//@ 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();
}