rust/tests/ui/cross-crate/moves-based-on-type-cross-crate.rs
2024-02-16 20:02:50 +00:00

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