Skip to content

Commit 6176258

Browse files
author
Jorge Aparicio
committed
---
yaml --- r: 272889 b: refs/heads/beta c: 2de4932 h: refs/heads/master i: 272887: ec688b5
1 parent a97f7ca commit 6176258

15 files changed

+15
-15
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ refs/tags/0.9: 36870b185fc5f5486636d4515f0e22677493f225
2323
refs/tags/0.10: ac33f2b15782272ae348dbd7b14b8257b2148b5a
2424
refs/tags/0.11.0: e1247cb1d0d681be034adb4b558b5a0c0d5720f9
2525
refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
26-
refs/heads/beta: 210dd611aa1bd80ed2f4e663b3c4b87b3cea069a
26+
refs/heads/beta: 2de4932453a99a19e9033edb47db7a66a612188c
2727
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
2828
refs/heads/tmp: e06d2ad9fcd5027bcaac5b08fc9aa39a49d0ecd3
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f

branches/beta/src/test/parse-fail/issue-19096.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212

1313
fn main() {
1414
let t = (42, 42);
15-
t.0::<isize>; //~ ERROR expected one of `.`, `;`, `}`, or an operator, found `::`
15+
t.0::<isize>; //~ ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `::`
1616
}

branches/beta/src/test/parse-fail/issue-3036.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
fn main()
1616
{
1717
let x = 3
18-
} //~ ERROR: expected one of `.`, `;`, or an operator, found `}`
18+
} //~ ERROR: expected one of `.`, `;`, `?`, or an operator, found `}`

branches/beta/src/test/parse-fail/macros-no-semicolon.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212

1313
fn main() {
1414
assert_eq!(1, 2)
15-
assert_eq!(3, 4) //~ ERROR expected one of `.`, `;`, `}`, or an operator, found `assert_eq`
15+
assert_eq!(3, 4) //~ ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `assert_eq`
1616
println!("hello");
1717
}

branches/beta/src/test/parse-fail/match-refactor-to-expr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ fn main() {
1414
let foo =
1515
match //~ NOTE did you mean to remove this `match` keyword?
1616
Some(4).unwrap_or_else(5)
17-
; //~ ERROR expected one of `.`, `{`, or an operator, found `;`
17+
; //~ ERROR expected one of `.`, `?`, `{`, or an operator, found `;`
1818

1919
println!("{}", foo)
2020
}

branches/beta/src/test/parse-fail/range-3.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414

1515
pub fn main() {
1616
let r = 1..2..3;
17-
//~^ ERROR expected one of `.`, `;`, or an operator, found `..`
17+
//~^ ERROR expected one of `.`, `;`, `?`, or an operator, found `..`
1818
}

branches/beta/src/test/parse-fail/range-4.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414

1515
pub fn main() {
1616
let r = ..1..2;
17-
//~^ ERROR expected one of `.`, `;`, or an operator, found `..`
17+
//~^ ERROR expected one of `.`, `;`, `?`, or an operator, found `..`
1818
}

branches/beta/src/test/parse-fail/raw-str-unbalanced.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212

1313
static s: &'static str =
1414
r#"
15-
"## //~ ERROR expected one of `.`, `;`, or an operator, found `#`
15+
"## //~ ERROR expected one of `.`, `;`, `?`, or an operator, found `#`
1616
;

branches/beta/src/test/parse-fail/removed-syntax-mut-vec-expr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
fn f() {
1414
let v = [mut 1, 2, 3, 4];
1515
//~^ ERROR expected identifier, found keyword `mut`
16-
//~^^ ERROR expected one of `!`, `,`, `.`, `::`, `;`, `]`, `{`, or an operator, found `1`
16+
//~^^ ERROR expected one of `!`, `,`, `.`, `::`, `;`, `?`, `]`, `{`, or an operator, found `1`
1717
}

branches/beta/src/test/parse-fail/removed-syntax-uniq-mut-expr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
fn f() {
1414
let a_box = box mut 42;
1515
//~^ ERROR expected identifier, found keyword `mut`
16-
//~^^ ERROR expected one of `!`, `.`, `::`, `;`, `{`, or an operator, found `42`
16+
//~^^ ERROR expected one of `!`, `.`, `::`, `;`, `?`, `{`, or an operator, found `42`
1717
}

branches/beta/src/test/parse-fail/removed-syntax-with-1.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ fn removed_with() {
1818

1919
let a = S { foo: (), bar: () };
2020
let b = S { foo: () with a };
21-
//~^ ERROR expected one of `,`, `.`, `}`, or an operator, found `with`
21+
//~^ ERROR expected one of `,`, `.`, `?`, `}`, or an operator, found `with`
2222
}

branches/beta/src/test/parse-fail/struct-literal-in-for.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ impl Foo {
2323
fn main() {
2424
for x in Foo {
2525
x: 3 //~ ERROR expected type, found `3`
26-
}.hi() { //~ ERROR expected one of `.`, `;`, `}`, or an operator, found `{`
26+
}.hi() { //~ ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `{`
2727
println!("yo");
2828
}
2929
}

branches/beta/src/test/parse-fail/struct-literal-in-if.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ impl Foo {
2323
fn main() {
2424
if Foo {
2525
x: 3 //~ ERROR expected type, found `3`
26-
}.hi() { //~ ERROR expected one of `.`, `;`, `}`, or an operator, found `{`
26+
}.hi() { //~ ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `{`
2727
println!("yo");
2828
}
2929
}

branches/beta/src/test/parse-fail/struct-literal-in-match-discriminant.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ fn main() {
2020
} {
2121
Foo {
2222
x: x
23-
} => {} //~ ERROR expected one of `.`, `;`, `}`, or an operator, found `=>`
23+
} => {} //~ ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `=>`
2424
}
2525
}

branches/beta/src/test/parse-fail/struct-literal-in-while.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ impl Foo {
2323
fn main() {
2424
while Foo {
2525
x: 3 //~ ERROR expected type, found `3`
26-
}.hi() { //~ ERROR expected one of `.`, `;`, `}`, or an operator, found `{`
26+
}.hi() { //~ ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `{`
2727
println!("yo");
2828
}
2929
}

0 commit comments

Comments
 (0)