thorpedosg

FBHdAjri

Aug 6th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. fn+main%28%29+%7B%0A++++%7B%0A++++++++let+x+%3D+0%3B%0A++++++++let+f%3A+Foo+%3D+x.into%28%29%3B%0A++++++++let+_%3A+u32+%3D+f.into%28%29%3B%0A++++%7D%0A%7D%0A%0Aenum+Foo+%7B%0A++++Bar%2C%0A++++Baz%2C%0A%7D%0A%0Aimpl+From+for+Foo+%7B%0A++++fn+from%28x%3A+u32%29+-%3E+Foo+%7B%0A++++++++match+x+%7B%0A++++++++++++0+%3D%3E+Foo%3A%3ABar%2C%0A++++++++++++1+%3D%3E+Foo%3A%3ABaz%2C%0A++++++++++++_+%3D%3E+unreachable%21%28%29%2C%0A++++++++%7D%0A++++%7D%0A%7D%0A%0Aimpl+Into+for+Foo+%7B%0A++++fn+into%28self%29+-%3E+u32+%7B%0A++++++++match+self+%7B%0A++++++++++++Foo%3A%3ABar+%3D%3E+0%2C%0A++++++++++++Foo%3A%3ABaz+%3D%3E+1%2C%0A++++++++%7D%0A++++%7D%0A%7D
Add Comment
Please, Sign In to add comment