summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-108109-fn-trait-missing-paren.fixed
blob: eaae288864a3d8819f03bab46fb6984dacc6f903 (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() {}