mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 16:24:46 +00:00
9 lines
110 B
Rust
9 lines
110 B
Rust
|
// aux-build:issue-61592.rs
|
||
|
|
||
|
extern crate foo;
|
||
|
|
||
|
#[doc(inline)] //~ ERROR
|
||
|
pub use foo::Foo as _;
|
||
|
|
||
|
fn main() {}
|