mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 08:15:58 +00:00
10 lines
232 B
Rust
10 lines
232 B
Rust
#![allow(stable_features)]
|
|
|
|
#![feature(rust1)]
|
|
#![feature(rust1)] //~ ERROR the feature `rust1` has already been enabled
|
|
|
|
#![feature(if_let)]
|
|
#![feature(if_let)] //~ ERROR the feature `if_let` has already been enabled
|
|
|
|
fn main() {}
|