Skip to content

Commit 598cf78

Browse files
committed
---
yaml --- r: 130682 b: refs/heads/snap-stage3 c: e5abe15 h: refs/heads/master v: v3
1 parent bd915ee commit 598cf78

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
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: ee72e46638f2b2ae92e99df2a7ea92690baa0d07
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 25e08fb4fef32b1687e077cfc87e817f75c29615
4+
refs/heads/snap-stage3: e5abe15ff55212c60fc4acc9bfc2bc79038507b8
55
refs/heads/try: a2473a89da106f7dd3be86e9d52fe23f43d5bfa5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/test/compile-fail/feature-gate-advanced-slice-features.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
fn main() {
1212
let x = [ 1i, 2, 3, 4, 5 ];
1313
match x {
14-
[ ..xs, 4, 5 ] => {} //~ ERROR multiple-element slice matches
15-
[ 1, ..xs, 5 ] => {} //~ ERROR multiple-element slice matches
16-
[ 1, 2, ..xs ] => {} // OK without feature gate
14+
[ xs.., 4, 5 ] => {} //~ ERROR multiple-element slice matches
15+
[ 1, xs.., 5 ] => {} //~ ERROR multiple-element slice matches
16+
[ 1, 2, xs.. ] => {} // OK without feature gate
1717
}
1818
}
1919

branches/snap-stage3/src/test/run-pass-fulldeps/issue-16992.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
// ignore-pretty
12+
// ignore-android
1213

1314
#![feature(quote)]
1415

0 commit comments

Comments
 (0)