rust/src/test/compile-fail/mut-pattern-mismatched.rs

27 lines
903 B
Rust
Raw Normal View History

// 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.
fn main() {
2014-12-05 20:12:25 -06:00
let foo = &mut 1is;
// (separate lines to ensure the spans are accurate)
2015-01-06 18:16:35 -06:00
// SNAP 340ac04 uncomment this after the next snapshot
2015-01-05 21:13:38 -06:00
// NOTE(stage0) just in case tidy doesn't check snap's in tests
2014-12-05 20:12:25 -06:00
// let &_ // ~ ERROR expected `&mut isize`, found `&_`
// = foo;
let &mut _ = foo;
2014-12-05 20:12:25 -06:00
let bar = &1is;
let &_ = bar;
2014-12-05 20:12:25 -06:00
let &mut _ //~ ERROR expected `&isize`, found `&mut _`
= bar;
}