Sign in
rust
/
rust-lang
/
rust
/
refs/heads/auto
/
.
/
tests
/
ui
/
attributes
/
extented-attribute-macro-error.rs
blob: f85a28ad706e51c3907a2d73de9c934423fd60b2 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{}