summary refs log tree commit diff
path: root/src/test/compile-fail/name-clash-nullary.rs
blob: 87af60ebcaa38fb035582ad11223f1c343e2fa34 (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);
}