2018-07-28 10:34:52 -05:00
|
|
|
|
#![feature(tool_lints)]
|
|
|
|
|
|
2018-05-11 06:20:39 -05:00
|
|
|
|
#![feature(alloc)]
|
2016-12-21 08:42:20 -06:00
|
|
|
|
#![feature(associated_type_defaults)]
|
2014-11-20 01:07:45 -06:00
|
|
|
|
|
2017-09-18 05:47:33 -05:00
|
|
|
|
|
2018-07-28 10:34:52 -05:00
|
|
|
|
#![warn(clippy::linkedlist)]
|
|
|
|
|
#![allow(dead_code, clippy::needless_pass_by_value)]
|
2015-01-10 00:26:58 -06:00
|
|
|
|
|
2017-06-15 22:30:55 -05:00
|
|
|
|
extern crate alloc;
|
2018-07-01 06:36:14 -05:00
|
|
|
|
use alloc::collections::linked_list::LinkedList;
|
2014-11-20 01:07:45 -06:00
|
|
|
|
|
2016-12-21 08:42:20 -06:00
|
|
|
|
trait Foo {
|
2017-02-08 07:58:07 -06:00
|
|
|
|
type Baz = LinkedList<u8>;
|
|
|
|
|
fn foo(LinkedList<u8>);
|
|
|
|
|
const BAR : Option<LinkedList<u8>>;
|
2016-12-21 08:42:20 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct Bar;
|
|
|
|
|
impl Bar {
|
2017-02-08 07:58:07 -06:00
|
|
|
|
fn foo(_: LinkedList<u8>) {}
|
2016-12-21 08:42:20 -06:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-08 07:58:07 -06:00
|
|
|
|
pub fn test(my_favourite_linked_list: LinkedList<u8>) {
|
2016-12-21 08:42:20 -06:00
|
|
|
|
println!("{:?}", my_favourite_linked_list)
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-08 07:58:07 -06:00
|
|
|
|
pub fn test_ret() -> Option<LinkedList<u8>> {
|
2016-12-21 08:42:20 -06:00
|
|
|
|
unimplemented!();
|
2014-11-20 01:07:45 -06:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-11 11:30:48 -05:00
|
|
|
|
pub fn test_local_not_linted() {
|
|
|
|
|
let _: LinkedList<u8>;
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-20 01:07:45 -06:00
|
|
|
|
fn main(){
|
2016-12-21 08:42:20 -06:00
|
|
|
|
test(LinkedList::new());
|
2017-06-11 11:30:48 -05:00
|
|
|
|
test_local_not_linted();
|
2015-08-21 11:40:36 -05:00
|
|
|
|
}
|