]> git.lizzy.rs Git - rust.git/blob - src/test/ui/attributes/extented-attribute-macro-error.rs
Rollup merge of #93112 - pietroalbini:pa-cve-2022-21658-nightly, r=pietroalbini
[rust.git] / src / test / ui / attributes / extented-attribute-macro-error.rs
1 // normalize-stderr-test: "couldn't read.*" -> "couldn't read the file"
2
3 #![feature(extended_key_value_attributes)]
4 #![doc = include_str!("../not_existing_file.md")]
5 struct Documented {}
6 //~^^ ERROR couldn't read
7
8 fn main() {}