]> git.lizzy.rs Git - rust.git/blob - tests/ui/cross-crate/moves-based-on-type-cross-crate.rs
Rollup merge of #106692 - eggyal:mv-binary_heap.rs-binary_heap/mod.rs, r=Mark-Simulacrum
[rust.git] / tests / ui / cross-crate / moves-based-on-type-cross-crate.rs
1 // run-pass
2 // aux-build:moves_based_on_type_lib.rs
3
4 // pretty-expanded FIXME #23616
5
6 extern crate moves_based_on_type_lib;
7 use moves_based_on_type_lib::f;
8
9 pub fn main() {
10     f();
11 }