]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc/issue-75588.rs
Rollup merge of #107580 - lenko-d:default_value_for_a_lifetime_generic_parameter_prod...
[rust.git] / tests / rustdoc / issue-75588.rs
1 // aux-build:realcore.rs
2 // aux-build:real_gimli.rs
3
4 // Ensure unstably exported traits have their Implementors sections.
5
6 #![crate_name = "foo"]
7 #![feature(extremely_unstable_foo)]
8
9 extern crate realcore;
10 extern crate real_gimli;
11
12 // issue #74672
13 // @!has foo/trait.Deref.html '//*[@id="impl-Deref-for-EndianSlice"]//h3[@class="code-header"]' 'impl Deref for EndianSlice'
14 pub use realcore::Deref;
15
16 // @has foo/trait.Join.html '//*[@id="impl-Join-for-Foo"]//h3[@class="code-header"]' 'impl Join for Foo'
17 pub use realcore::Join;