// normalize-stderr-test: "not-a-file.md:.*\(" -> "not-a-file.md: $$FILE_NOT_FOUND_MSG (" #![feature(external_doc)] #[doc(include = "not-a-file.md")] pub struct SomeStruct; //~^ ERROR couldn't read #[doc(include = "auxiliary/invalid-utf8.txt")] pub struct InvalidUtf8; //~^ ERROR wasn't a utf-8 file #[doc(include)] pub struct MissingPath; //~^ ERROR expected path //~| HELP provide a file path with `=` //~| SUGGESTION include = "" #[doc(include("../README.md"))] pub struct InvalidPathSyntax; //~^ ERROR expected path //~| HELP provide a file path with `=` //~| SUGGESTION include = "../README.md" #[doc(include = 123)] pub struct InvalidPathType; //~^ ERROR expected path //~| HELP provide a file path with `=` //~| SUGGESTION include = "" #[doc(include(123))] pub struct InvalidPathSyntaxAndType; //~^ ERROR expected path //~| HELP provide a file path with `=` //~| SUGGESTION include = "" fn main() {}