rust/tests/ui/rust-2018/uniform-paths/block-scoped-shadow.rs
2023-01-11 09:32:08 +00:00

22 lines
304 B
Rust

// edition:2018
#![allow(non_camel_case_types)]
enum Foo {}
struct std;
fn main() {
enum Foo { A, B }
use Foo::*;
//~^ ERROR `Foo` is ambiguous
let _ = (A, B);
fn std() {}
enum std {}
use std as foo;
//~^ ERROR `std` is ambiguous
//~| ERROR `std` is ambiguous
}