``` use std::rt::{}; ``` should warn that `std::rt` is unstable, but it doesn't. ``` mod m { mod n {} } use m::n::{}; ``` should be caught by privacy checker, but it isn't. See https://github.com/rust-lang/rust/pull/28364#issuecomment-139869943 for some details.