rust/tests/ui/attributes/attr-shebang.rs
许杰友 Jieyou Xu (Joe) 88f8bf7e56 Adjust tests/ui/attr-shebang.rs
- Move `tests/ui/attr-shebang.rs` to `tests/ui/attributes/`.
- Downgrade test to `check-pass`, this would fail very early if the
  parser did not accept `#![..]` attributes.
- Briefly document test intent.
2024-12-17 19:22:21 +08:00

8 lines
169 B
Rust

//! Check that we accept crate-level inner attributes with the `#![..]` shebang syntax.
//@ check-pass
#![allow(stable_features)]
#![feature(rust1)]
pub fn main() { }