rust/src/test/ui/extern/external-doc-error.rs
2018-10-05 11:37:48 +04:00

8 lines
214 B
Rust

// normalize-stderr-test: "not-a-file.md:.*\(" -> "not-a-file.md: $$FILE_NOT_FOUND_MSG ("
#![feature(external_doc)]
#[doc(include = "not-a-file.md")] //~ ERROR: couldn't read
pub struct SomeStruct;
fn main() {}