blob: c9ca2f71341edd59952710399e71b1470ede82c4 [file] [log] [blame]
// compile-pass
#![allow(dead_code)]
trait DeclarationParser {
type Declaration;
}
struct DeclarationListParser<'i, I, P>
where P: DeclarationParser<Declaration = I>
{
input: &'i (),
parser: P
}
fn main() {}