mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-05 05:47:39 +03:00
Add ui test of colliding From impls
This commit is contained in:
parent
1b898b8ed0
commit
8b663dc3ea
2 changed files with 16 additions and 0 deletions
11
tests/ui/same-from-type.rs
Normal file
11
tests/ui/same-from-type.rs
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
use thiserror::Error;
|
||||||
|
|
||||||
|
#[derive(Error, Debug)]
|
||||||
|
pub enum Error {
|
||||||
|
#[error("failed to open")]
|
||||||
|
OpenFile(#[from] std::io::Error),
|
||||||
|
#[error("failed to close")]
|
||||||
|
CloseFIle(#[from] std::io::Error),
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() {}
|
5
tests/ui/same-from-type.stderr
Normal file
5
tests/ui/same-from-type.stderr
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
error: cannot derive From because another variant has the same source type
|
||||||
|
--> tests/ui/same-from-type.rs:8:15
|
||||||
|
|
|
||||||
|
8 | CloseFIle(#[from] std::io::Error),
|
||||||
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
Loading…
Add table
Add a link
Reference in a new issue