rust/tests/ui/underscore-imports/cycle.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
276 B
Rust
Raw Normal View History

// Check that cyclic glob imports are allowed with underscore imports
// check-pass
mod x {
pub use crate::y::*;
pub use std::ops::Deref as _;
}
mod y {
pub use crate::x::*;
pub use std::ops::Deref as _;
}
pub fn main() {
use x::*;
(&0).deref();
}