about summary refs log tree commit diff
path: root/tests/ui/attributes/extented-attribute-macro-error.rs
blob: 5dcb38d7da9d431d2dbe235a0a3a69d05c54c495 (plain)
1
2
3
4
5
6
7
//@ normalize-stderr-test: "couldn't read.*" -> "couldn't read the file"

#![doc = include_str!("../not_existing_file.md")]
struct Documented {}
//~^^ ERROR couldn't read

fn main() {}