summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-6251.rs
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()
}