// run-pass #![allow(unused_imports)] // aux-build:issue-13507.rs extern crate issue_13507; use issue_13507::testtypes; use std::any::TypeId; pub fn type_ids() -> Vec { use issue_13507::testtypes::*; vec![ TypeId::of::(), TypeId::of::(), TypeId::of::(), TypeId::of::(), TypeId::of::(), TypeId::of::(), TypeId::of::(), TypeId::of::(), TypeId::of::(), TypeId::of::(), TypeId::of::(), TypeId::of::(), TypeId::of::(), TypeId::of::(), TypeId::of::(), TypeId::of::() ] } pub fn main() { let othercrate = issue_13507::testtypes::type_ids(); let thiscrate = type_ids(); assert_eq!(thiscrate, othercrate); }