Skip to content

Commit 224a372

Browse files
committed
---
yaml --- r: 163657 b: refs/heads/snap-stage3 c: ebf1e4f h: refs/heads/master i: 163655: b9a9240 v: v3
1 parent fe82a52 commit 224a372

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
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 9146a919b616e39e528e4d7100d16eef52f1f852
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: a04ce71172d8b51aa0d7df288bfd7333e39c763a
4+
refs/heads/snap-stage3: ebf1e4f23adba8fc2a4441b8c2a7473c3a7c9d65
55
refs/heads/try: 20cbbffeefc1f35e2ea63afce7b42fbd79611d42
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d

branches/snap-stage3/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/snap-stage3/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/snap-stage3/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)