Guest User

Untitled

a guest
Feb 18th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. #![feature(slice_patterns)]
  2.  
  3. fn pat_slice([_x, ..]: [u8; 3]) {}
  4.  
  5. fn main() {
  6. pat_slice([1, 2, 3]);
  7. }
Add Comment
Please, Sign In to add comment