diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2014-01-09 15:56:38 -0500 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2014-01-09 21:59:07 -0500 |
| commit | fc60ace7a9ec6feed79cf52cc245f4d7c048fc8b (patch) | |
| tree | e7de14e8284cc6ca97e837c6ed1d479247f8786a /src/libstd/option.rs | |
| parent | c5bcb22719a8af3075fdd204003a748022022479 (diff) | |
| download | rust-fc60ace7a9ec6feed79cf52cc245f4d7c048fc8b.tar.gz rust-fc60ace7a9ec6feed79cf52cc245f4d7c048fc8b.zip | |
port over the old tests to the new `Rc`
Diffstat (limited to 'src/libstd/option.rs')
| -rw-r--r-- | src/libstd/option.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/option.rs b/src/libstd/option.rs index f49244a3607..7ce9873c2da 100644 --- a/src/libstd/option.rs +++ b/src/libstd/option.rs @@ -509,7 +509,7 @@ mod tests { } } - let i = Rc::from_send(RefCell::new(0)); + let i = Rc::new(RefCell::new(0)); { let x = R(i.clone()); let opt = Some(x); |
