rust/tests/ui/attributes/attr-bad-crate-attr.rs
许杰友 Jieyou Xu (Joe) 0fc6be7898 Adjust tests/ui/attr-bad-crate-attr.rs
- Move `tests/ui/attr-bad-crate-attr.rs` to `tests/ui/attributes/`.
- Briefly document test intent add link to relevant Reference docs.
2024-12-17 19:18:30 +08:00

10 lines
306 B
Rust

//! Check that we permit a crate-level inner attribute but reject a dangling outer attribute which
//! does not have a following thing that it can target.
//!
//! See <https://doc.rust-lang.org/reference/attributes.html>.
//@ error-pattern: expected item
#![attr = "val"]
#[attr = "val"] // Unterminated