2015-04-13 19:58:18 +02:00
|
|
|
|
#![feature(plugin, collections)]
|
2016-12-21 15:42:20 +01:00
|
|
|
|
#![feature(associated_type_defaults)]
|
|
|
|
|
#![feature(associated_consts)]
|
2014-11-20 08:07:45 +01:00
|
|
|
|
|
2015-03-02 11:43:44 +01:00
|
|
|
|
#![plugin(clippy)]
|
2015-04-13 19:58:18 +02:00
|
|
|
|
#![deny(clippy)]
|
2016-12-21 15:42:20 +01:00
|
|
|
|
#![allow(dead_code)]
|
2015-01-10 07:26:58 +01:00
|
|
|
|
|
2014-11-20 08:07:45 +01:00
|
|
|
|
extern crate collections;
|
2015-03-02 11:43:44 +01:00
|
|
|
|
use collections::linked_list::LinkedList;
|
2014-11-20 08:07:45 +01:00
|
|
|
|
|
2016-12-21 15:42:20 +01:00
|
|
|
|
trait Foo {
|
|
|
|
|
type Baz = LinkedList<u8>; //~ ERROR I see you're using a LinkedList!
|
|
|
|
|
fn foo(LinkedList<u8>); //~ ERROR I see you're using a LinkedList!
|
|
|
|
|
const BAR : Option<LinkedList<u8>>; //~ ERROR I see you're using a LinkedList!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 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>) {} //~ ERROR I see you're using a LinkedList!
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn test(my_favourite_linked_list: LinkedList<u8>) { //~ ERROR I see you're using a LinkedList!
|
|
|
|
|
println!("{:?}", my_favourite_linked_list)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn test_ret() -> Option<LinkedList<u8>> { //~ ERROR I see you're using a LinkedList!
|
|
|
|
|
unimplemented!();
|
2014-11-20 08:07:45 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main(){
|
2016-12-21 15:42:20 +01:00
|
|
|
|
test(LinkedList::new());
|
2015-08-21 18:40:36 +02:00
|
|
|
|
}
|