blob: 492f84f56c3a0e2eda981165c47dbd43e8b53af4 (
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() {}
|