rust/tests/rustdoc/method-anchor-in-blanket-impl-86620.rs

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

12 lines
354 B
Rust
Raw Permalink Normal View History

2021-07-04 18:30:48 -05:00
//@ aux-build:issue-86620-1.rs
2024-05-21 14:28:30 -05:00
#![crate_name = "foo"]
// https://github.com/rust-lang/rust/issues/86620
2021-07-04 18:30:48 -05:00
extern crate issue_86620_1;
use issue_86620_1::*;
//@ !has foo/struct.S.html '//*[@id="method.vzip"]//a[@class="fnname"]/@href' #tymethod.vzip
//@ has foo/struct.S.html '//*[@id="method.vzip"]//a[@class="anchor"]/@href' #method.vzip
2021-07-04 18:30:48 -05:00
pub struct S;