about summary refs log tree commit diff
path: root/tests/ui/parser/issues/issue-7222.rs
blob: fb18f4cd62ecaa84b72f005dc0b61ca0d0158d2b (plain)
1
2
3
4
5
6
7
8
9
10
11
// run-pass
// pretty-expanded FIXME #23616

pub fn main() {
    const FOO: f64 = 10.0;

    match 0.0 {
        0.0 ..= FOO => (),
        _ => ()
    }
}