mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 03:09:54 +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() { }
|