use std; import option; fn f(&o: option) { assert o == option::none; } fn main() { f::(option::none); }