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