rust/tests/rustdoc-ui/issue-61592-2.rs

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

11 lines
140 B
Rust
Raw Normal View History

// aux-build:issue-61592.rs
extern crate foo;
#[doc = "bar"]
#[doc(inline)] //~ ERROR
#[doc = "baz"]
pub use foo::Foo as _;
fn main() {}