mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
11 lines
335 B
Rust
11 lines
335 B
Rust
// check-pass
|
|
|
|
#[doc(include = "external-cross-doc.md")]
|
|
//~^ WARNING unknown `doc` attribute `include`
|
|
//~| HELP use `doc = include_str!` instead
|
|
// FIXME(#85497): make this a deny instead so it's more clear what's happening
|
|
//~| NOTE on by default
|
|
//~| WARNING previously accepted
|
|
//~| NOTE see issue #82730
|
|
pub struct NeedMoreDocs;
|