mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:58:10 +00:00
10 lines
165 B
Rust
10 lines
165 B
Rust
// Check that we don't ICE for irrefutable or-patterns in function parameters
|
|
|
|
// check-pass
|
|
|
|
fn foo((Some(_) | None): Option<u32>) {}
|
|
|
|
fn main() {
|
|
foo(None);
|
|
}
|