FIX #21475: Interval match patterns won't parse namespace specifiers correctly

This commit is contained in:
defuz 2015-01-22 21:56:27 +02:00
parent 48aeaba934
commit 52fa187431
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,26 @@
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use m::{START, END};
fn main() {
match 42u32 {
m::START...m::END => {},
// FIXME: Should also work (now: mismatched types in range [E0031])
// 0u32...m::END => {},
// m::START...59u32 => {},
_ => {},
}
}
mod m {
pub const START: u32 = 4;
pub const END: u32 = 14;
}