mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
20 lines
228 B
Rust
20 lines
228 B
Rust
// check-pass
|
|
// edition:2018
|
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
enum Foo {}
|
|
|
|
struct std;
|
|
|
|
fn main() {
|
|
enum Foo { A, B }
|
|
use Foo::*; // OK
|
|
|
|
let _ = (A, B);
|
|
|
|
fn std() {}
|
|
enum std {}
|
|
use std as foo; // OK
|
|
}
|