rustc/tests/ui/binding/match-pattern-simple.rs
2025-02-17 11:14:05 +01:00

9 lines
104 B
Rust

//@ run-pass
#![allow(dead_code)]
fn altsimple(f: isize) { match f { _x => () } }
pub fn main() { }