1
Fork 0
rust/src/test/rustdoc/intra-doc-crate/auxiliary/submodule-outer.rs

14 lines
157 B
Rust
Raw Normal View History

#![crate_name = "bar"]
2020-06-10 08:56:44 -04:00
#![deny(intra_doc_resolution_failure)]
pub trait Foo {
/// [`Bar`] [`Baz`]
fn foo();
}
pub trait Bar {
}
pub trait Baz {
}