mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-29 11:51:31 +03:00
10 lines
234 B
Rust
10 lines
234 B
Rust
#![allow(stable_features)]
|
|
|
|
#![feature(rust1)]
|
|
#![feature(rust1)] //~ ERROR the feature `rust1` has already been declared
|
|
|
|
#![feature(if_let)]
|
|
#![feature(if_let)] //~ ERROR the feature `if_let` has already been declared
|
|
|
|
fn main() {}
|