Add ui test of colliding From impls

This commit is contained in:
David Tolnay 2024-11-04 23:47:27 -05:00
parent 1b898b8ed0
commit 8b663dc3ea
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
2 changed files with 16 additions and 0 deletions

View 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() {}

View 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),
| ^^^^^^^^^^^^^^^^^^^^^^