Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.06 KB | None | 0 0
  1. enum A<T = i32>
  2. {
  3. V1(T),
  4. V2
  5. }
  6.  
  7. fn main()
  8. {
  9. let a = A::V2;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement