Guest User

Untitled

a guest
Jul 17th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. pub fn Generic(comptime len: usize) var {
  2. return struct {
  3. stack: [len]u8,
  4. };
  5. }
  6.  
  7. const Thing = Generic(1);
  8.  
  9. test "crash" {
  10. Thing.bloop();
  11. }
Add Comment
Please, Sign In to add comment