5d32d03b89
What we now do is to create a region variable for each & expression (and also each borrow). The lifetime of this variable will be checked by borrowck to ensure it is not greater than the lifetime of the underlying data. This both leads to shorter lifetimes in some cases but also longer in others, such as taking the address to the interior of unique boxes tht are rooted in region pointers (e.g., returning a pointer to the interior of a sendable map). This may lead to issue #2977 if the rvalue is not POD, because we may drop the data in trans sooner than borrowck expects us to. Need to work out precisely where that fix ought to occur.
12 lines
261 B
Rust
12 lines
261 B
Rust
use std;
|
|
import option;
|
|
|
|
fn f<T>(&o: option<T>) {
|
|
assert o == option::none;
|
|
}
|
|
|
|
fn main() {
|
|
f::<int>(option::none);
|
|
//~^ ERROR taking mut reference to static item
|
|
//~^^ ERROR illegal borrow: creating mutable alias to aliasable, immutable memory
|
|
} |