mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-05 17:10:21 +00:00
14 lines
242 B
Rust
14 lines
242 B
Rust
// Test the suggestion to wrap an or-pattern as a function parameter in parens.
|
|
|
|
// run-rustfix
|
|
|
|
#![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
|