2011-05-05 19:56:02 -05:00
|
|
|
// -*- rust -*-
|
|
|
|
|
2012-01-17 16:40:59 -06:00
|
|
|
#[crate_type = "bin"];
|
|
|
|
|
2012-04-05 19:30:26 -05:00
|
|
|
#[no_core];
|
|
|
|
|
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 19:08:21 -05:00
|
|
|
#[allow(vecs_implicitly_copyable)];
|
2012-06-04 20:34:24 -05:00
|
|
|
|
2012-07-11 11:09:08 -05:00
|
|
|
use core(vers = "0.3");
|
|
|
|
use std(vers = "0.3");
|
|
|
|
use syntax(vers = "0.3");
|
2012-04-05 19:30:26 -05:00
|
|
|
|
|
|
|
import core::*;
|
2011-05-05 19:56:02 -05:00
|
|
|
|
|
|
|
// Local Variables:
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|