]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue-3278/version_one.rs
Auto merge of #95315 - compiler-errors:pointee-fix, r=pnkfelix
[rust.git] / src / tools / rustfmt / tests / target / issue-3278 / version_one.rs
1 // rustfmt-version: One
2
3 pub fn parse_conditional<'a, I: 'a>(
4 ) -> impl Parser<Input = I, Output = Expr, PartialState = ()> + 'a
5 where
6     I: Stream<Item = char>,
7 {
8 }