17 lines
440 B
Rust
17 lines
440 B
Rust
|
// exec-env:RUST_POISON_ON_FREE=1
|
||
|
|
||
|
fn main() {
|
||
|
let x: @mut @option<~int> = @mut @none;
|
||
|
alt x {
|
||
|
@@some(y) {
|
||
|
// here, the refcount of `*x` is bumped so
|
||
|
// `y` remains valid even if `*x` is modified.
|
||
|
*x = @none;
|
||
|
}
|
||
|
@@none {
|
||
|
// here, no bump of the ref count of `*x` is needed, but in
|
||
|
// fact a bump occurs anyway because of how pattern marching
|
||
|
// works.
|
||
|
}
|
||
|
}
|
||
|
}
|