rust/tests/rustdoc/inline_cross/impl-dyn-trait-32881.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
401 B
Rust
Raw Normal View History

2025-01-29 11:20:22 -07:00
// https://github.com/rust-lang/rust/issues/32881
#![crate_name="foobar"]
//@ aux-build:rustdoc-trait-object-impl.rs
//@ build-aux-docs
//@ ignore-cross-compile
extern crate rustdoc_trait_object_impl;
2025-01-29 11:20:22 -07:00
//@ has foobar/trait.Bar.html
//@ has - '//h3[@class="code-header"]' "impl<'a> dyn Bar"
//@ has - '//h3[@class="code-header"]' "impl<'a> Debug for dyn Bar"
pub use rustdoc_trait_object_impl::Bar;