mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +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() {}
|