summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-108109-fn-trait-missing-paren.rs
blob: ea5c71150e83c59f5571be2260c3d0b6a6b14bd5 (plain)
1
2
3
4
5
6
7
8
// run-rustfix

pub fn func<F>() where F: FnOnce -> () {}
//~^ ERROR expected one of
//~| NOTE expected one of
//~| NOTE `Fn` bounds require arguments in parentheses

fn main() {}