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

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

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