1 2 3 4 5 6 7 8 9 10 11
#![crate_name = "issue_86620_1"] pub trait VZip { fn vzip() -> usize; } impl<T> VZip for T { fn vzip() -> usize { 0 } }