mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
224 B
Rust
15 lines
224 B
Rust
// 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() {}
|