2018-10-04 17:31:35 +04:00
|
|
|
// normalize-stderr-test: "not-a-file.md:.*\(" -> "not-a-file.md: $$FILE_NOT_FOUND_MSG ("
|
2018-08-10 12:27:46 +02:00
|
|
|
|
2017-12-19 16:50:53 -06:00
|
|
|
#![feature(external_doc)]
|
|
|
|
|
|
|
|
|
|
#[doc(include = "not-a-file.md")] //~ ERROR: couldn't read
|
|
|
|
|
pub struct SomeStruct;
|
|
|
|
|
|
|
|
|
|
fn main() {}
|