about summary refs log tree commit diff
path: root/src/test/compile-fail/enum-in-scope.rs
blob: 38e95c21e8f4fcff367c8ea8bc1ce51bbcc4cf50 (plain)
1
2
3
4
5
enum hello = int;

fn main() {
    let hello = 0; //!ERROR declaration of `hello` shadows an enum that's in
}