blob: 4d6eb617b599a2625af0a315b40c491d9d39b47f [file] [log] [blame]
// https://github.com/rust-lang/rust/issues/36075
//@ check-pass
#![allow(dead_code)]
trait DeclarationParser {
type Declaration;
}
struct DeclarationListParser<'i, I, P>
where P: DeclarationParser<Declaration = I>
{
input: &'i (),
parser: P
}
fn main() {}