2011-05-05 20:56:02 -04:00
|
|
|
// -*- rust -*-
|
|
|
|
|
2012-01-17 14:40:59 -08:00
|
|
|
#[crate_type = "bin"];
|
|
|
|
|
2012-04-05 17:30:26 -07:00
|
|
|
#[no_core];
|
|
|
|
|
2012-09-18 15:52:21 -07:00
|
|
|
#[legacy_modes];
|
2012-09-21 18:10:45 -07:00
|
|
|
#[legacy_exports];
|
2012-09-18 15:52:21 -07:00
|
|
|
|
Nomenclature fixes in the lint checker. Fewer double-negatives.
New style is allow(foo), warn(foo), deny(foo) and forbid(foo),
mirrored by -A foo, -W foo, -D foo and -F foo on command line.
These replace -W no-foo, -W foo, -W err-foo, respectively.
Forbid is new, and means "deny, and you can't override it".
2012-07-26 17:08:21 -07:00
|
|
|
#[allow(vecs_implicitly_copyable)];
|
2012-09-18 11:20:57 -07:00
|
|
|
#[allow(non_camel_case_types)];
|
2012-06-04 18:34:24 -07:00
|
|
|
|
2012-09-11 17:46:20 -07:00
|
|
|
extern mod core(vers = "0.4");
|
|
|
|
extern mod std(vers = "0.4");
|
|
|
|
extern mod syntax(vers = "0.4");
|
2012-04-05 17:30:26 -07:00
|
|
|
|
2012-09-05 11:46:25 -07:00
|
|
|
use core::*;
|
2011-05-05 20:56:02 -04:00
|
|
|
|
|
|
|
// Local Variables:
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|