rust/src/test/compile-fail/enum-in-scope.rs

6 lines
92 B
Rust
Raw Normal View History

enum hello = int;
fn main() {
let hello = 0; //~ERROR declaration of `hello` shadows
}