blob: 7c556005f2d5c5882ec69f32459c1f2207809204 [file] [log] [blame]
//@ run-pass
#![allow(dead_code)]
// Regression test for #20582. This test caused an ICE related to
// inconsistent region erasure in codegen.
struct Foo<'a> {
buf: &'a[u8]
}
impl<'a> Iterator for Foo<'a> {
type Item = &'a[u8];
fn next(&mut self) -> Option<<Self as Iterator>::Item> {
Some(self.buf)
}
}
fn main() {
}