summaryrefslogtreecommitdiffstats
path: root/src/test/ui/half-open-range-patterns/half-open-range-pats-bad-types.rs
blob: 17ea2b13f690f20d22fd2cc58b15ccf281cb270d (plain)
1
2
3
4
5
6
7
#![feature(exclusive_range_pattern)]

fn main() {
    let "a".. = "a"; //~ ERROR only `char` and numeric types are allowed in range patterns
    let .."a" = "a"; //~ ERROR only `char` and numeric types are allowed in range patterns
    let ..="a" = "a"; //~ ERROR only `char` and numeric types are allowed in range patterns
}