mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-28 02:57:37 +00:00
8 lines
169 B
Rust
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() { }
|