Sign in
rust
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
imports
/
cycle-import-in-std-2.rs
blob: d73c57944bc29472c4819969020d1d40c6398b14 [
file
] [
log
] [
blame
]
//@ edition: 2018
// https://github.com/rust-lang/rust/issues/125013
use
ops
::{
self
as
std
};
//~^ ERROR: unresolved import `ops`
use
std
::
ops
::
Deref
::{
self
as
ops
};
fn
main
()
{}