summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-6251.rs
blob: 6aa779aaeb3b660a18aaa6acefa9e70790628087 (plain)
1
2
3
4
5
6
// originally from glacier/fixed/77329.rs
// assertion failed: `(left == right) ; different DefIds

fn bug<T>() -> impl Iterator<Item = [(); { |x: [u8]| x }]> {
    std::iter::empty()
}