2014-12-05 17:56:25 -06:00
|
|
|
// 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;
|
2014-12-05 17:56:25 -06:00
|
|
|
|
|
|
|
// (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 `&_`
|
2014-12-05 17:56:25 -06:00
|
|
|
// = foo;
|
|
|
|
let &mut _ = foo;
|
|
|
|
|
2014-12-05 20:12:25 -06:00
|
|
|
let bar = &1is;
|
2014-12-05 17:56:25 -06:00
|
|
|
let &_ = bar;
|
2014-12-05 20:12:25 -06:00
|
|
|
let &mut _ //~ ERROR expected `&isize`, found `&mut _`
|
2014-12-05 17:56:25 -06:00
|
|
|
= bar;
|
|
|
|
}
|