rust/tests/target/issue-3278/version_two.rs

9 lines
166 B
Rust
Raw Normal View History

// rustfmt-version: Two
pub fn parse_conditional<'a, I: 'a>()
-> impl Parser<Input = I, Output = Expr, PartialState = ()> + 'a
where
I: Stream<Item = char>,
{
}