]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/dlist.rs
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / dlist.rs
index 2a3cefcbc1f420b2d57026ffe87bdf0fbee96be6..dfc8be24a8bdd258b60933c798eac7cd2aa7cc06 100644 (file)
@@ -1,24 +1,30 @@
-#![feature(plugin, collections)]
+// 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.
+
+#![feature(alloc)]
 #![feature(associated_type_defaults)]
-#![feature(associated_consts)]
+#![warn(clippy::linkedlist)]
+#![allow(dead_code, clippy::needless_pass_by_value)]
 
-#![plugin(clippy)]
-#![deny(clippy)]
-#![allow(dead_code, needless_pass_by_value)]
-
-extern crate collections;
-use collections::linked_list::LinkedList;
+extern crate alloc;
+use alloc::collections::linked_list::LinkedList;
 
 trait Foo {
     type Baz = LinkedList<u8>;
     fn foo(LinkedList<u8>);
-    const BAR : Option<LinkedList<u8>>;
+    const BAR: Option<LinkedList<u8>>;
 }
 
 // ok, we don’t want to warn for implementations, see #605
 impl Foo for LinkedList<u8> {
     fn foo(_: LinkedList<u8>) {}
-    const BAR : Option<LinkedList<u8>> = None;
+    const BAR: Option<LinkedList<u8>> = None;
 }
 
 struct Bar;
@@ -34,6 +40,11 @@ pub fn test_ret() -> Option<LinkedList<u8>> {
     unimplemented!();
 }
 
-fn main(){
+pub fn test_local_not_linted() {
+    let _: LinkedList<u8>;
+}
+
+fn main() {
     test(LinkedList::new());
+    test_local_not_linted();
 }