Code: ``` rust use std::rand; pub trait Nothing { } impl<T: rand::Rand> Nothing for T { } impl<T: rand::Rand> Nothing for ~[T] { } ``` Output: ``` error: conflicting implementations for trait `lib::Nothing` ``` Expected: Compile normally, as there is no `impl Rand for ~[T]`.