We need to add an epoch lint for [RFC 2126](https://github.com/rust-lang/rfcs/blob/master/text/2126-path-clarity.md) It will lint `extern crate foobar;`, suggesting removal in root mods, and replacement with `use foobar;` in non-root mods. This is blocked on the ability to elide extern crate in the first place.
We need to add an epoch lint for RFC 2126
It will lint
extern crate foobar;, suggesting removal in root mods, and replacement withuse foobar;in non-root mods.This is blocked on the ability to elide extern crate in the first place.