diff options
| author | Mark Rousskov <mark.simulacrum@gmail.com> | 2020-07-19 16:39:20 -0400 |
|---|---|---|
| committer | Mark Rousskov <mark.simulacrum@gmail.com> | 2020-07-19 16:39:20 -0400 |
| commit | e24a0172b0df21b0bc17f3c9a16773d8889dd2b1 (patch) | |
| tree | bcf322e0b23754b0957267ddaf1e4cdaba52d362 /src/test/rustdoc/hide-unstable-trait.rs | |
| parent | d7f94516345a36ddfcd68cbdf1df835d356795c3 (diff) | |
| download | rust-e24a0172b0df21b0bc17f3c9a16773d8889dd2b1.tar.gz rust-e24a0172b0df21b0bc17f3c9a16773d8889dd2b1.zip | |
Only skip impls of foreign unstable traits
Previously unstable impls were skipped, which meant that any impl with an unstable method would get skipped.
Diffstat (limited to 'src/test/rustdoc/hide-unstable-trait.rs')
| -rw-r--r-- | src/test/rustdoc/hide-unstable-trait.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/test/rustdoc/hide-unstable-trait.rs b/src/test/rustdoc/hide-unstable-trait.rs new file mode 100644 index 00000000000..c30d6ed7b52 --- /dev/null +++ b/src/test/rustdoc/hide-unstable-trait.rs @@ -0,0 +1,11 @@ +// aux-build:unstable-trait.rs + +#![crate_name = "foo"] +#![feature(private_trait)] + +extern crate unstable_trait; + +// @has foo/struct.Foo.html 'bar' +// @has foo/struct.Foo.html 'bar2' +#[doc(inline)] +pub use unstable_trait::Foo; |
