blob: bc5bdc3ff9ef74c5834e39a68524dacdcdd47354 [file] [log] [blame]
// 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() {}