Skip to content

Commit 16eab77

Browse files
committed
---
yaml --- r: 164630 b: refs/heads/auto c: ebf1e4f h: refs/heads/master v: v3
1 parent 2d0eaa0 commit 16eab77

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1010
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1111
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1212
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
13-
refs/heads/auto: a04ce71172d8b51aa0d7df288bfd7333e39c763a
13+
refs/heads/auto: ebf1e4f23adba8fc2a4441b8c2a7473c3a7c9d65
1414
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1515
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1616
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336

branches/auto/src/test/compile-fail/issue-15965.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010

1111
fn main() {
1212
return
13-
{ return () } //~ ERROR the type of this value must be known in this context
13+
{ return () }
14+
//~^ ERROR the type of this value must be known in this context
15+
//~| ERROR this function takes 1 parameter
16+
//~| ERROR mismatched types
1417
()
1518
;
1619
}

branches/auto/src/test/compile-fail/issue-18345.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ type Transducer<'t, R, T, U> = |Step<'t, R, U>|: 't -> Step<'t, R, T>;
1313

1414
fn mapping<'f, R, T, U>(f: |T|: 'f -> U) -> &'f Transducer<'f, R, T, U> {
1515
|step| |r, x|
16-
step(r, f(x)) //~ ERROR the type of this value must be known in this context
16+
step(r, f(x))
17+
//~^ ERROR the type of this value must be known in this context
18+
//~| ERROR this function takes 1 parameter but 2 parameters were supplied
1719
}
1820

1921
fn main() {}

branches/auto/src/test/compile-fail/issue-18532.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@
1717
fn main() {
1818
(return)((),());
1919
//~^ ERROR the type of this value must be known
20+
//~| ERROR this function takes 1 parameter
2021
}

0 commit comments

Comments
 (0)