blob: 08730fe8b07b74f030fc217025bc18734fc6498b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Test the suggestion to wrap an or-pattern as a function parameter in parens.
// run-rustfix
#![feature(or_patterns)]
#![allow(warnings)]
fn main() {}
enum E { A, B }
use E::*;
#[cfg(FALSE)]
fn fun1((A | B): E) {} //~ ERROR an or-pattern parameter must be wrapped in parenthesis
|