blob: aeb4a05ea808ea4055c48f340bbbd90cfe1be64b (
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 top-level or-patterns are not allowed
|