mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 05:57:03 +03:00
add mcve as test
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
#![crate_name = "issue_86620_1"]
|
||||
|
||||
pub trait VZip {
|
||||
fn vzip() -> usize;
|
||||
}
|
||||
|
||||
impl<T> VZip for T {
|
||||
fn vzip() -> usize {
|
||||
0
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
// aux-build:issue-86620-1.rs
|
||||
|
||||
extern crate issue_86620_1;
|
||||
|
||||
use issue_86620_1::*;
|
||||
|
||||
// @!has issue_86620/struct.S.html '//div[@id="method.vzip"]//a[@class="fnname"]/@href' #tymethod.vzip
|
||||
pub struct S;
|
||||
Reference in New Issue
Block a user