Auto merge of #50697 - KiChjang:issue-50461, r=pnkfelix

Use EverInit instead of MaybeInit to determine initialization

Fixes #50461.
Fixes #50463.
This commit is contained in:
bors 2018-05-18 19:36:26 +00:00
commit 952f344cdc
2 changed files with 31 additions and 3 deletions

View file

@ -0,0 +1,25 @@
// Copyright 2016 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.
#![feature(nll)]
#![deny(unused_mut)]
struct Foo {
pub value: i32
}
fn use_foo_mut(mut foo: Foo) {
foo = foo;
println!("{}", foo.value);
}
fn main() {
use_foo_mut(Foo { value: 413 });
}