rust/tests/ui/attributes/extented-attribute-macro-error.rs
Guillaume Gomez 4936973d49 Fix ui tests
2025-12-10 12:28:05 +01:00

8 lines
225 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
//~| ERROR attribute value must be a literal
fn main() {}