1/*
2This library is a shim around `lazy_static` that disambiguates it with the `lazy_static`
3that's shipped with the Rust toolchain. We re-export the entire public API of `lazy_static`
4under a different crate name so that can be imported in the compile tests.
5
6This currently appears to use the right local build of `lazy_static`.
7*/
8
9extern crate lazy_static;
10
11pub use self::lazy_static::*;
12