mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
45 lines
895 B
Rust
45 lines
895 B
Rust
#![feature(tool_lints)]
|
||
|
||
#![feature(alloc)]
|
||
#![feature(associated_type_defaults)]
|
||
|
||
|
||
#![warn(clippy::linkedlist)]
|
||
#![allow(dead_code, clippy::needless_pass_by_value)]
|
||
|
||
extern crate alloc;
|
||
use alloc::collections::linked_list::LinkedList;
|
||
|
||
trait Foo {
|
||
type Baz = LinkedList<u8>;
|
||
fn foo(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;
|
||
}
|
||
|
||
struct Bar;
|
||
impl Bar {
|
||
fn foo(_: LinkedList<u8>) {}
|
||
}
|
||
|
||
pub fn test(my_favourite_linked_list: LinkedList<u8>) {
|
||
println!("{:?}", my_favourite_linked_list)
|
||
}
|
||
|
||
pub fn test_ret() -> Option<LinkedList<u8>> {
|
||
unimplemented!();
|
||
}
|
||
|
||
pub fn test_local_not_linted() {
|
||
let _: LinkedList<u8>;
|
||
}
|
||
|
||
fn main(){
|
||
test(LinkedList::new());
|
||
test_local_not_linted();
|
||
}
|