Skip to content

Commit 4bae88d

Browse files
author
Jakub Bukaj
committed
---
yaml --- r: 162557 b: refs/heads/try c: d6b023a h: refs/heads/master i: 162555: 597b6e7 v: v3
1 parent 1a0f421 commit 4bae88d

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 9146a919b616e39e528e4d7100d16eef52f1f852
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: cafe2966770ff377aad6dd9fd808e68055587c58
5-
refs/heads/try: 69a217f37c9e0cfdc2c21ee8c4e969f4a3771734
5+
refs/heads/try: d6b023a46750d6c2df919908bd0f1460d3d9c8a6
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
88
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try/src/compiletest/runtest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -990,7 +990,7 @@ fn check_expected_errors(expected_errors: Vec<errors::ExpectedError> ,
990990
let i = s.chars();
991991
let c : Vec<char> = i.map( |c| {
992992
if c.is_ascii() {
993-
c.to_ascii().to_lowercase().to_char()
993+
c.to_ascii().to_lowercase().as_char()
994994
} else {
995995
c
996996
}

branches/try/src/test/pretty/issue-19077.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
fn main() {
1414
match true {
1515
true if true => (),
16-
false => unsafe { },
16+
false if false => unsafe { },
1717
true => { }
1818
false => (),
1919
}

branches/try/src/test/run-pass/super-fast-paren-parsing.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// ignore-pretty
12+
//
1113
// exec-env:RUST_MIN_STACK=16000000
1214
//
1315
// Big stack is needed for pretty printing, a little sad...

0 commit comments

Comments
 (0)