summary refs log tree commit diff
path: root/src/test/compile-fail/name-clash-nullary.rs
blob: 36c131cde4d93330b7f9fe1013599374a3b3f1ca (plain)
1
2
3
4
5
6
7
// error-pattern:Declaration of none shadows
import option::*;

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