blob: a81137a6465586368931fd069938a726ac15f41d (
plain)
1
2
3
4
5
6
|
// 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()
}
|