about summary refs log tree commit diff
path: root/tests/ui/imports/cycle-import-in-std-2.rs
blob: d73c57944bc29472c4819969020d1d40c6398b14 (plain)
1
2
3
4
5
6
7
8
9
//@ 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() {}