2013-06-17 19:25:06 -04:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
// Testing guarantees provided by once functions.
|
|
|
|
// This program would segfault if it were legal.
|
|
|
|
|
2014-03-21 18:05:05 -07:00
|
|
|
#![feature(once_fns)]
|
2014-06-07 11:13:26 -07:00
|
|
|
use std::sync::Arc;
|
2013-06-17 19:25:06 -04:00
|
|
|
|
2014-11-26 08:12:18 -05:00
|
|
|
fn foo<F:FnOnce()>(blk: F) {
|
2013-06-17 19:25:06 -04:00
|
|
|
blk();
|
|
|
|
blk(); //~ ERROR use of moved value
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2014-01-30 15:04:47 -05:00
|
|
|
let x = Arc::new(true);
|
2014-11-26 08:12:18 -05:00
|
|
|
foo(move|| {
|
2014-03-22 00:55:50 -07:00
|
|
|
assert!(*x);
|
2013-12-02 22:37:26 -08:00
|
|
|
drop(x);
|
2014-01-27 18:29:50 -05:00
|
|
|
});
|
2013-06-17 19:25:06 -04:00
|
|
|
}
|