about summary refs log tree commit diff
path: root/src/libstd/option.rs
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2014-01-09 15:56:38 -0500
committerDaniel Micay <danielmicay@gmail.com>2014-01-09 21:59:07 -0500
commitfc60ace7a9ec6feed79cf52cc245f4d7c048fc8b (patch)
treee7de14e8284cc6ca97e837c6ed1d479247f8786a /src/libstd/option.rs
parentc5bcb22719a8af3075fdd204003a748022022479 (diff)
downloadrust-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.rs2
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);