extern mod std; use cmp::Eq; fn f(o: &mut Option) { assert *o == option::None; } fn main() { f::(&mut option::None); //~^ ERROR illegal borrow: creating mutable alias to static item }