Advertisement
Guest User

Untitled

a guest
Sep 15th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1.  
  2. fn AsRef(comptime Target: type) type {
  3. return struct {
  4. const Self = this;
  5.  
  6. fn as_ref(self: *const Self) *const Target {
  7. return undefined;
  8. }
  9. };
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement