mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-06 06:17:39 +03:00
Reject transparent attr in field attribute position
This commit is contained in:
parent
c1ab55293d
commit
85b0944eac
3 changed files with 18 additions and 0 deletions
|
@ -163,6 +163,12 @@ fn check_field_attrs(fields: &[Field]) -> Result<()> {
|
|||
backtrace_field = Some(field);
|
||||
has_backtrace = true;
|
||||
}
|
||||
if let Some(transparent) = field.attrs.transparent {
|
||||
return Err(Error::new_spanned(
|
||||
transparent,
|
||||
"#[error(transparent)] needs to go outside the enum or struct, not on an individual field",
|
||||
));
|
||||
}
|
||||
has_backtrace |= field.is_backtrace();
|
||||
}
|
||||
if let (Some(from_field), Some(source_field)) = (from_field, source_field) {
|
||||
|
|
7
tests/ui/bad-field-attr.rs
Normal file
7
tests/ui/bad-field-attr.rs
Normal file
|
@ -0,0 +1,7 @@
|
|||
use thiserror::Error;
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
#[error(transparent)]
|
||||
pub struct Error(#[error(transparent)] std::io::Error);
|
||||
|
||||
fn main() {}
|
5
tests/ui/bad-field-attr.stderr
Normal file
5
tests/ui/bad-field-attr.stderr
Normal file
|
@ -0,0 +1,5 @@
|
|||
error: #[error(transparent)] needs to go outside the enum or struct, not on an individual field
|
||||
--> $DIR/bad-field-attr.rs:5:18
|
||||
|
|
||||
5 | pub struct Error(#[error(transparent)] std::io::Error);
|
||||
| ^^^^^^^^^^^^^^^^^^^^^
|
Loading…
Add table
Add a link
Reference in a new issue