Guest User

Untitled

a guest
Jul 16th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. fn main() {
  2. for foo in foo() {
  3. let x: u32 = foo;
  4. }
  5. }
  6.  
  7. fn foo() -> impl Iterator {
  8. vec![5u32].into_iter()
  9. }
Add Comment
Please, Sign In to add comment