Skip to content

Commit 372e128

Browse files
committed
Add test for duplicate features
1 parent c717ccb commit 372e128

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
#![allow(stable_features)]
12+
#![deny(duplicate_features)]
13+
14+
#![feature(rust1)]
15+
#![feature(rust1)] //~ ERROR duplicate `rust1` feature attribute
16+
17+
#![feature(if_let)]
18+
#![feature(if_let)] //~ ERROR duplicate `if_let` feature attribute
19+
20+
fn main() {}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
error: duplicate `if_let` feature attribute
2+
--> $DIR/duplicate-features.rs:18:12
3+
|
4+
LL | #![feature(if_let)] //~ ERROR duplicate `if_let` feature attribute
5+
| ^^^^^^
6+
|
7+
note: lint level defined here
8+
--> $DIR/duplicate-features.rs:12:9
9+
|
10+
LL | #![deny(duplicate_features)]
11+
| ^^^^^^^^^^^^^^^^^^
12+
13+
error: duplicate `rust1` feature attribute
14+
--> $DIR/duplicate-features.rs:15:12
15+
|
16+
LL | #![feature(rust1)] //~ ERROR duplicate `rust1` feature attribute
17+
| ^^^^^
18+
19+
error: aborting due to 2 previous errors
20+

0 commit comments

Comments
 (0)