summary refs log tree commit diff
path: root/src/test/compile-fail/name-clash-nullary-2.rs
blob: 7626c8028712302c1846616c1e1d0e778901569a (plain)
1
2
3
4
5
6
7
// error-pattern:declaration of `thpppt` shadows
enum ack { thpppt, ffff, }

fn main() {
  let thpppt: int = 42;
  log(debug, thpppt);
}