blob: 08730fe8b07b74f030fc217025bc18734fc6498b [file] [log] [blame]
// 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