Skip to content

Commit 3f76607

Browse files
committed
Rustup to rustc 1.38.0-nightly (4560cb830 2019-07-28)
1 parent a24a956 commit 3f76607

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/mini_core_hello_world.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ fn main() {
216216
let x = &[0u32, 42u32] as &[u32];
217217
match x {
218218
[] => assert_eq!(0u32, 1),
219-
[_, ref y..] => assert_eq!(&x[1] as *const u32 as usize, &y[0] as *const u32 as usize),
219+
[_, ref y @ ..] => assert_eq!(&x[1] as *const u32 as usize, &y[0] as *const u32 as usize),
220220
}
221221

222222
assert_eq!(((|()| 42u8) as fn(()) -> u8)(()), 42);

0 commit comments

Comments
 (0)