rust/tests/rustdoc/auxiliary/issue-86620-1.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
142 B
Rust
Raw Normal View History

2021-07-04 23:30:48 +00:00
#![crate_name = "issue_86620_1"]
pub trait VZip {
fn vzip() -> usize;
}
impl<T> VZip for T {
fn vzip() -> usize {
0
}
}