mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 13:43:17 +00:00
b0db9c285d
Signed-off-by: cuishuang <imcusg@gmail.com>
6 lines
200 B
Rust
6 lines
200 B
Rust
// originally from glacier/fixed/77329.rs
|
|
// assertion failed: `(left == right)` ; different DefIds
|
|
//@no-rustfix
|
|
fn bug<T>() -> impl Iterator<Item = [(); { |x: [u8]| x }]> {
|
|
std::iter::empty()
|
|
}
|