rust/tests/ui/issues/issue-36075.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
224 B
Rust
Raw Normal View History

// 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() {}