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

9 lines
167 B
Rust
Raw Normal View History

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