Skip to content

Commit 4ae56cc

Browse files
committed
---
yaml --- r: 225221 b: refs/heads/stable c: 82ded3c h: refs/heads/master i: 225219: 23c8300 v: v3
1 parent 51c643a commit 4ae56cc

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ refs/heads/tmp: e5d90d98402475b6e154ce216f9efcb80da1a747
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3030
refs/tags/homu-tmp: 1fe32ca12c51afcd761d9962f51a74ff0d07a591
3131
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
32-
refs/heads/stable: df93deab10850d52252829770895b0249b0d7f1e
32+
refs/heads/stable: 82ded3cd03e001e82b9dce9aedac621a5292231b
3333
refs/tags/1.0.0: 55bd4f8ff2b323f317ae89e254ce87162d52a375
3434
refs/tags/1.1.0: bc3c16f09287e5545c1d3f76b7abd54f2eca868b

branches/stable/src/libsyntax/parse/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -923,6 +923,7 @@ mod tests {
923923
variadic: false
924924
}),
925925
ast::Unsafety::Normal,
926+
ast::Constness::NotConst,
926927
abi::Rust,
927928
ast::Generics{ // no idea on either of these:
928929
lifetimes: Vec::new(),

branches/stable/src/libsyntax/print/pprust.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2997,7 +2997,7 @@ impl<'a> State<'a> {
29972997

29982998
match constness {
29992999
ast::Constness::NotConst => {}
3000-
ast::Constness::Const => try!(self.word_nbsp("unsafe"))
3000+
ast::Constness::Const => try!(self.word_nbsp("const"))
30013001
}
30023002

30033003
if abi != abi::Rust {

0 commit comments

Comments
 (0)