rustc/tests/ui/attributes/extented-attribute-macro-error.rs
2025-02-17 11:14:05 +01:00

8 lines
180 B
Rust

//@ normalize-stderr: "couldn't read.*" -> "couldn't read the file"
#![doc = include_str!("../not_existing_file.md")]
struct Documented {}
//~^^ ERROR couldn't read
fn main() {}