]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/needless_update.rs
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / needless_update.rs
index 55cfed76d5d3ef9290d6176637b45229849e13e4..891c446b0ea30009e00ff59ce4cc8189eacace79 100644 (file)
@@ -1,8 +1,14 @@
-#![feature(plugin)]
-#![plugin(clippy)]
+// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution.
+//
+// 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.
 
-#![deny(needless_update)]
-#![allow(no_effect)]
+#![warn(clippy::needless_update)]
+#![allow(clippy::no_effect)]
 
 struct S {
     pub a: i32,
@@ -13,5 +19,5 @@ fn main() {
     let base = S { a: 0, b: 0 };
     S { ..base }; // no error
     S { a: 1, ..base }; // no error
-    S { a: 1, b: 1, ..base }; //~ERROR struct update has no effect
+    S { a: 1, b: 1, ..base };
 }