mirror of
https://git.proxmox.com/git/rustc
synced 2025-12-16 03:14:21 +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() {}
|