2020-09-10 22:01:25 -05:00
|
|
|
//@ aux-build:realcore.rs
|
|
|
|
//@ aux-build:real_gimli.rs
|
|
|
|
|
|
|
|
// Ensure unstably exported traits have their Implementors sections.
|
2024-04-06 16:41:09 -05:00
|
|
|
// https://github.com/rust-lang/rust/issues/75588
|
2020-09-10 22:01:25 -05:00
|
|
|
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
#![feature(extremely_unstable_foo)]
|
|
|
|
|
|
|
|
extern crate realcore;
|
|
|
|
extern crate real_gimli;
|
|
|
|
|
|
|
|
// issue #74672
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ !has foo/trait.Deref.html '//*[@id="impl-Deref-for-EndianSlice"]//h3[@class="code-header"]' 'impl Deref for EndianSlice'
|
2020-09-10 22:01:25 -05:00
|
|
|
pub use realcore::Deref;
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has foo/trait.Join.html '//*[@id="impl-Join-for-Foo"]//h3[@class="code-header"]' 'impl Join for Foo'
|
2020-09-10 22:01:25 -05:00
|
|
|
pub use realcore::Join;
|