10 lines
140 B
Rust
10 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() {}
|