DEBSOURCES
Skip Quicknav
sources / rust-lazy-static / 1.5.0-1 / tests / compile_fail / incorrect_visibility_restriction.rs
12345678
#[macro_use] extern crate lazy_static; lazy_static! { pub(nonsense) static ref WRONG: () = (); } fn main() { }