mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 13:07:37 +00:00
11 lines
140 B
Rust
11 lines
140 B
Rust
![]() |
// aux-build:issue-61592.rs
|
||
|
|
||
|
extern crate foo;
|
||
|
|
||
|
#[doc = "bar"]
|
||
|
#[doc(inline)] //~ ERROR
|
||
|
#[doc = "baz"]
|
||
|
pub use foo::Foo as _;
|
||
|
|
||
|
fn main() {}
|