mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
288 B
Rust
15 lines
288 B
Rust
// run-rustfix
|
|
|
|
struct TargetStruct;
|
|
|
|
impl From<usize> for TargetStruct {
|
|
fn from(_unchecked: usize) -> Self {
|
|
TargetStruct
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let a = &3;
|
|
let _b: TargetStruct = a.into(); //~ ERROR the trait bound `TargetStruct: From<&{integer}>` is not satisfied
|
|
}
|