rust/src/test/compile-fail/issue-511.rs

14 lines
281 B
Rust
Raw Normal View History

2011-09-23 00:50:12 -05:00
use std;
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);
//~^ ERROR taking mut reference to static item
//~^^ ERROR illegal borrow: creating mutable alias to aliasable, immutable memory
2012-08-27 18:26:35 -05:00
}