rust/tests/ui/issues/issue-8783.rs
surechen 40ae34194c remove redundant imports
detects redundant imports that can be eliminated.

for #117772 :

In order to facilitate review and modification, split the checking code and
removing redundant imports code into two PR.
2023-12-10 10:56:22 +08:00

23 lines
408 B
Rust

// run-pass
#![allow(unused_variables)]
// pretty-expanded FIXME #23616
struct X { pub x: usize }
impl Default for X {
fn default() -> X {
X { x: 42 }
}
}
struct Y<T> { pub y: T }
impl<T: Default> Default for Y<T> {
fn default() -> Y<T> {
Y { y: Default::default() }
}
}
fn main() {
let X { x: _ } = Default::default();
let Y { y: X { x } } = Default::default();
}