8 lines
137 B
Rust
8 lines
137 B
Rust
// error-pattern:declaration of `thpppt` shadows
|
|
enum ack { thpppt, ffff, }
|
|
|
|
fn main() {
|
|
let thpppt: int = 42;
|
|
log(debug, thpppt);
|
|
}
|