2017-10-06 15:30:23 -05:00
|
|
|
// Encountered while testing #44614.
|
2019-07-02 16:30:28 -05:00
|
|
|
// build-pass (FIXME(62277): could be check-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
|
|
|
}
|