mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-08 20:58:21 +00:00
10 lines
184 B
Rust
10 lines
184 B
Rust
// should error due to missing feature gate.
|
|
|
|
#![warn(unused)]
|
|
|
|
#[expect(unused)]
|
|
//~^ ERROR: the `#[expect]` attribute is an experimental feature [E0658]
|
|
fn main() {
|
|
let x = 1;
|
|
}
|