Add URL to test cases
This commit is contained in:
parent
0f466b06d1
commit
da7e87ef70
18 changed files with 33 additions and 0 deletions
tests/rustdoc
doctest-include-43153.rsdoctest-macro-38219.rsdoctest-markdown-trailing-docblock-48377.rsenum-variant-private-46767.rsenum-variant-reexport-46766.rsforeign-implementors-js-43701.rsice-34423.rsice-36031.rsice-apit-46976.rsice-circular-intra-doc-link-48414.rsice-extern-crate-40936.rsice-nested-extern-crate-46271.rsice-nested-macro-rules-47639.rsinline-rename-34473.rsprivate-use-decl-macro-47038.rssrc-links-implementor-43893.rstrait-implementations-duplicate-self-45584.rstuple-struct-34928.rs
|
@ -1,3 +1,5 @@
|
||||||
|
// https://github.com/rust-lang/rust/issues/43153
|
||||||
|
|
||||||
// Test that `include!` in a doc test searches relative to the directory in
|
// Test that `include!` in a doc test searches relative to the directory in
|
||||||
// which the test is declared.
|
// which the test is declared.
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// https://github.com/rust-lang/rust/issues/38219
|
||||||
|
|
||||||
// compile-flags:--test
|
// compile-flags:--test
|
||||||
// should-fail
|
// should-fail
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
// compile-flags:--test
|
// compile-flags:--test
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/48377
|
||||||
|
|
||||||
//! This is a doc comment
|
//! This is a doc comment
|
||||||
//!
|
//!
|
||||||
//! ```rust
|
//! ```rust
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// https://github.com/rust-lang/rust/issues/46767
|
||||||
#![crate_name = "foo"]
|
#![crate_name = "foo"]
|
||||||
|
|
||||||
mod private {
|
mod private {
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// https://github.com/rust-lang/rust/issues/46766
|
||||||
#![crate_name = "foo"]
|
#![crate_name = "foo"]
|
||||||
|
|
||||||
pub enum Enum{Variant}
|
pub enum Enum{Variant}
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// https://github.com/rust-lang/rust/issues/43701
|
||||||
#![crate_name = "foo"]
|
#![crate_name = "foo"]
|
||||||
|
|
||||||
pub use std::vec::Vec;
|
pub use std::vec::Vec;
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// https://github.com/rust-lang/rust/issues/34423
|
||||||
|
|
||||||
pub struct Foo;
|
pub struct Foo;
|
||||||
|
|
||||||
pub trait Bar {
|
pub trait Bar {
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
// build-aux-docs
|
// build-aux-docs
|
||||||
// ignore-cross-compile
|
// ignore-cross-compile
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/36031
|
||||||
|
|
||||||
#![crate_name = "foo"]
|
#![crate_name = "foo"]
|
||||||
|
|
||||||
extern crate issue_36031;
|
extern crate issue_36031;
|
||||||
|
|
|
@ -1 +1,3 @@
|
||||||
|
// https://github.com/rust-lang/rust/issues/46976
|
||||||
|
|
||||||
pub fn ice(f: impl Fn()) {}
|
pub fn ice(f: impl Fn()) {}
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
// aux-build:issue-48414.rs
|
// aux-build:issue-48414.rs
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/48414
|
||||||
|
|
||||||
// ICE when resolving paths for a trait that linked to another trait, when both were in an external
|
// ICE when resolving paths for a trait that linked to another trait, when both were in an external
|
||||||
// crate
|
// crate
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
// aux-build:issue-40936.rs
|
// aux-build:issue-40936.rs
|
||||||
// build-aux-docs
|
// build-aux-docs
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/40936
|
||||||
|
|
||||||
#![crate_name = "foo"]
|
#![crate_name = "foo"]
|
||||||
|
|
||||||
extern crate issue_40936;
|
extern crate issue_40936;
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
// hopefully this doesn't cause an ICE
|
// hopefully this doesn't cause an ICE
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/46271
|
||||||
|
|
||||||
pub fn foo() {
|
pub fn foo() {
|
||||||
extern crate std;
|
extern crate std;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
// This should not ICE
|
// This should not ICE
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/47639
|
||||||
pub fn test() {
|
pub fn test() {
|
||||||
macro_rules! foo {
|
macro_rules! foo {
|
||||||
() => ()
|
() => ()
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#![crate_name = "foo"]
|
#![crate_name = "foo"]
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/34473
|
||||||
|
|
||||||
mod second {
|
mod second {
|
||||||
pub struct SomeTypeWithLongName;
|
pub struct SomeTypeWithLongName;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
#![crate_name = "foo"]
|
#![crate_name = "foo"]
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/47038
|
||||||
|
|
||||||
use std::vec;
|
use std::vec;
|
||||||
|
|
||||||
// @has 'foo/index.html'
|
// @has 'foo/index.html'
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
// ignore-cross-compile
|
// ignore-cross-compile
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/43893
|
||||||
|
|
||||||
#![crate_name = "foo"]
|
#![crate_name = "foo"]
|
||||||
|
|
||||||
pub trait SomeTrait {}
|
pub trait SomeTrait {}
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#![crate_name = "foo"]
|
#![crate_name = "foo"]
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/45584
|
||||||
|
|
||||||
pub trait Bar<T, U> {}
|
pub trait Bar<T, U> {}
|
||||||
|
|
||||||
// @has 'foo/struct.Foo1.html'
|
// @has 'foo/struct.Foo1.html'
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#![crate_name = "foo"]
|
#![crate_name = "foo"]
|
||||||
|
|
||||||
|
// https://github.com/rust-lang/rust/issues/34928
|
||||||
|
|
||||||
pub trait Bar {}
|
pub trait Bar {}
|
||||||
|
|
||||||
// @has foo/struct.Foo.html '//pre' 'pub struct Foo<T>(pub T) where T: Bar;'
|
// @has foo/struct.Foo.html '//pre' 'pub struct Foo<T>(pub T) where T: Bar;'
|
||||||
|
|
Loading…
Add table
Reference in a new issue