]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cross-crate/moves-based-on-type-cross-crate.rs
Auto merge of #102655 - joboet:windows_tls_opt, r=ChrisDenton
[rust.git] / src / test / 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 }