2017-10-06 15:30:23 -05:00
|
|
|
// Encountered while testing #44614.
|
2018-04-02 06:20:06 -05:00
|
|
|
// compile-pass
|
2017-10-06 15:30:23 -05:00
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
// Constant of generic type (int)
|
2018-01-16 02:24:38 -06:00
|
|
|
const X: &'static u32 = &22;
|
2017-10-06 15:30:23 -05:00
|
|
|
assert_eq!(0, match &22 {
|
|
|
|
X => 0,
|
|
|
|
_ => 1,
|
|
|
|
});
|
2017-11-20 06:13:27 -06:00
|
|
|
}
|