about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-10-16 17:52:25 +0000
committerbors <bors@rust-lang.org>2014-10-16 17:52:25 +0000
commit8b979739713f54eb9315ed5f88b8f06d43d0bbb5 (patch)
treeaa374aaa783ed319e49592dcd40cf7b6416d53b8 /src/liballoc
parentb6e0d3a5bf4c88650a22f605f822e02c6b163580 (diff)
parent78992485047f7600a0d34c5f573b30be262b2e4b (diff)
downloadrust-8b979739713f54eb9315ed5f88b8f06d43d0bbb5.tar.gz
rust-8b979739713f54eb9315ed5f88b8f06d43d0bbb5.zip
auto merge of #18064 : luqmana/rust/remove-reflection, r=nick29581
Out goes reflection! This means your code will break if you used the `:?` format specifier, anything else from libdebug, or the `visit_tydesc` intrinsic directly.

Closes #18046.

[breaking-change]
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/arc.rs2
-rw-r--r--src/liballoc/lib.rs1
2 files changed, 0 insertions, 3 deletions
diff --git a/src/liballoc/arc.rs b/src/liballoc/arc.rs
index a2483f23534..c447cb46c53 100644
--- a/src/liballoc/arc.rs
+++ b/src/liballoc/arc.rs
@@ -317,8 +317,6 @@ mod tests {
 
         assert_eq!((*arc_v)[2], 3);
         assert_eq!((*arc_v)[4], 5);
-
-        info!("{:?}", arc_v);
     }
 
     #[test]
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs
index 7b008a76dd6..2df9a585fec 100644
--- a/src/liballoc/lib.rs
+++ b/src/liballoc/lib.rs
@@ -77,7 +77,6 @@ extern crate libc;
 
 // Allow testing this library
 
-#[cfg(test)] extern crate debug;
 #[cfg(test)] extern crate native;
 #[cfg(test)] #[phase(plugin, link)] extern crate std;
 #[cfg(test)] #[phase(plugin, link)] extern crate log;