blob: f5f75f9f4dac5dbf9e62307de61b8d792f204641 (
plain)
| 1
2
3
4
5
6
7
8
 | // normalize-stderr-test: "couldn't read.*" -> "couldn't read the file"
#![feature(extended_key_value_attributes)]
#![doc = include_str!("../not_existing_file.md")]
struct Documented {}
//~^^ ERROR couldn't read
fn main() {}
 |