Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
feature-gates
/
duplicate-features.rs
blob: d8f7818054a127192e0e5939fdb50ac23d0f6ee9 [
file
] [
log
] [
blame
]
#![
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
()
{}