Fix issue with using self module via indirection

This commit is contained in:
varkor 2020-01-10 22:29:57 +00:00
parent 2d8d559bbe
commit 799efd3615
2 changed files with 9 additions and 0 deletions

View file

@ -0,0 +1,6 @@
// check-pass
pub extern crate self as name;
pub use name::name as bug;
fn main() {}