aboutsummaryrefslogtreecommitdiff
path: root/lazy-static/compiletest/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'lazy-static/compiletest/src/lib.rs')
-rw-r--r--lazy-static/compiletest/src/lib.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/lazy-static/compiletest/src/lib.rs b/lazy-static/compiletest/src/lib.rs
deleted file mode 100644
index 0452765..0000000
--- a/lazy-static/compiletest/src/lib.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-/*
-This library is a shim around `lazy_static` that disambiguates it with the `lazy_static`
-that's shipped with the Rust toolchain. We re-export the entire public API of `lazy_static`
-under a different crate name so that can be imported in the compile tests.
-
-This currently appears to use the right local build of `lazy_static`.
-*/
-
-extern crate lazy_static;
-
-pub use self::lazy_static::*;