Rename issue-\d+.rs tests to have meaningful names
This commit is contained in:
parent
79195d5cbb
commit
7cd8b2c925
22 changed files with 0 additions and 0 deletions
18
tests/rustdoc/doc-hidden-method-13698.rs
Normal file
18
tests/rustdoc/doc-hidden-method-13698.rs
Normal file
|
@ -0,0 +1,18 @@
|
|||
// aux-build:issue-13698.rs
|
||||
// ignore-cross-compile
|
||||
|
||||
#![crate_name="issue_13698"]
|
||||
|
||||
extern crate issue_13698;
|
||||
|
||||
pub struct Foo;
|
||||
// @!has issue_13698/struct.Foo.html '//*[@id="method.foo"]' 'fn foo'
|
||||
impl issue_13698::Foo for Foo {}
|
||||
|
||||
pub trait Bar {
|
||||
#[doc(hidden)]
|
||||
fn bar(&self) {}
|
||||
}
|
||||
|
||||
// @!has issue_13698/struct.Foo.html '//*[@id="method.bar"]' 'fn bar'
|
||||
impl Bar for Foo {}
|
Loading…
Add table
Add a link
Reference in a new issue