librustc: Remove the const declaration form everywhere

This commit is contained in:
Patrick Walton
2013-03-22 14:00:15 -07:00
parent eba3367404
commit 85c9fc6f8f
157 changed files with 1031 additions and 1033 deletions

View File

@@ -378,7 +378,7 @@ fn default_fold_should_produce_same_doc() {
#[test]
fn default_fold_should_produce_same_consts() {
let source = ~"const a: int = 0;";
let source = ~"static a: int = 0;";
let ast = parse::from_str(source);
let doc = extract::extract(ast, ~"");
let fld = default_seq_fold(());