mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
21 lines
333 B
Rust
21 lines
333 B
Rust
#![warn(clippy::from_over_into)]
|
|
|
|
// this should throw an error
|
|
struct StringWrapper(String);
|
|
|
|
impl Into<StringWrapper> for String {
|
|
fn into(self) -> StringWrapper {
|
|
StringWrapper(self)
|
|
}
|
|
}
|
|
|
|
// this is fine
|
|
struct A(String);
|
|
|
|
impl From<String> for A {
|
|
fn from(s: String) -> A {
|
|
A(s)
|
|
}
|
|
}
|
|
|
|
fn main() {}
|