Skip to content

Commit

Permalink
Add error checks for duplicate attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
tjkirch committed Jul 12, 2019
1 parent fe33842 commit 149b6cc
Show file tree
Hide file tree
Showing 3 changed files with 252 additions and 37 deletions.
45 changes: 45 additions & 0 deletions compatibility-tests/compile-fail/tests/ui/attribute-duplication.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
mod enum_duplication {
use snafu::Snafu;

#[derive(Debug, Snafu)]
#[snafu(visibility(pub))]
#[snafu(visibility(pub))]
enum EnumError {
#[snafu(display("an error variant"))]
#[snafu(display("should not allow duplicate display"))]
#[snafu(visibility(pub))]
#[snafu(visibility(pub))]
AVariant {
#[snafu(source(from(EnumError, Box::new)))]
#[snafu(backtrace(delegate))]
source: Box<EnumError>,
#[snafu(source)]
#[snafu(backtrace(delegate))]
source2: String,
#[snafu(source)]
#[snafu(backtrace(delegate))]
source3: String,

#[snafu(backtrace)]
backtrace1: String,
#[snafu(backtrace)]
backtrace2: String,
#[snafu(backtrace)]
backtrace3: String,
},
}
}

mod struct_duplication {
use snafu::Snafu;

#[derive(Debug, Snafu)]
enum UsableError {}

#[derive(Debug, Snafu)]
#[snafu(source(from(UsableError, Box::new)))]
#[snafu(source(from(UsableError, Box::new)))]
struct StructError(Box<UsableError>);
}

fn main() {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
error: Only one field can be designated as 'visibility'; found a duplicate here:
--> $DIR/attribute-duplication.rs:7:10
|
7 | enum EnumError {
| ^^^^^^^^^

error: Only one field can be designated as 'source'; found a duplicate here:
--> $DIR/attribute-duplication.rs:18:13
|
18 | source2: String,
| ^^^^^^^

error: Only one field can be designated as 'source'; found a duplicate here:
--> $DIR/attribute-duplication.rs:21:13
|
21 | source3: String,
| ^^^^^^^

error: Only one field can be designated as 'backtrace'; found a duplicate here:
--> $DIR/attribute-duplication.rs:26:13
|
26 | backtrace2: String,
| ^^^^^^^^^^

error: Only one field can be designated as 'backtrace'; found a duplicate here:
--> $DIR/attribute-duplication.rs:28:13
|
28 | backtrace3: String,
| ^^^^^^^^^^

error: Only one field can be designated as 'backtrace(delegate)'; found a duplicate here:
--> $DIR/attribute-duplication.rs:18:13
|
18 | source2: String,
| ^^^^^^^

error: Only one field can be designated as 'backtrace(delegate)'; found a duplicate here:
--> $DIR/attribute-duplication.rs:21:13
|
21 | source3: String,
| ^^^^^^^

error: Cannot have 'backtrace' and 'backtrace(delegate)' fields in the same enum
--> $DIR/attribute-duplication.rs:24:13
|
24 | backtrace1: String,
| ^^^^^^^^^^

error: Cannot have 'backtrace' and 'backtrace(delegate)' fields in the same enum
--> $DIR/attribute-duplication.rs:15:13
|
15 | source: Box<EnumError>,
| ^^^^^^

error: Only one field can be designated as 'display'; found a duplicate here:
--> $DIR/attribute-duplication.rs:12:9
|
12 | AVariant {
| ^^^^^^^^

error: Only one field can be designated as 'visibility'; found a duplicate here:
--> $DIR/attribute-duplication.rs:12:9
|
12 | AVariant {
| ^^^^^^^^

error: Only one field can be designated as 'source(from)'; found a duplicate here:
--> $DIR/attribute-duplication.rs:41:25
|
41 | #[snafu(source(from(UsableError, Box::new)))]
| ^^^^^^^^^^^
Loading

0 comments on commit 149b6cc

Please sign in to comment.