2011-09-23 00:50:12 -05:00
|
|
|
use std;
|
2011-12-13 18:25:51 -06:00
|
|
|
import option;
|
2012-08-27 18:26:35 -05:00
|
|
|
import cmp::Eq;
|
2011-09-23 00:50:12 -05:00
|
|
|
|
2012-08-27 18:26:35 -05:00
|
|
|
fn f<T:Eq>(&o: Option<T>) {
|
2012-08-20 14:23:37 -05:00
|
|
|
assert o == option::None;
|
2011-09-23 00:50:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2012-08-20 14:23:37 -05:00
|
|
|
f::<int>(option::None);
|
2012-06-30 06:23:59 -05:00
|
|
|
//~^ ERROR taking mut reference to static item
|
2012-07-26 10:51:57 -05:00
|
|
|
//~^^ ERROR illegal borrow: creating mutable alias to aliasable, immutable memory
|
2012-08-27 18:26:35 -05:00
|
|
|
}
|