Guest User

Untitled

a guest
Aug 20th, 2013
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Haxe 0.32 KB | None | 0 0
  1. package;
  2.  
  3. import haxe.ds.Vector;
  4.  
  5. class Useless {
  6.     public function new() { }
  7. }
  8.  
  9. class ReproCase {
  10.     public function new() { }
  11.  
  12.     public function GoBang() : Void {
  13.         // Might need to increase 1000 if it doesn't go bang for you.
  14.        
  15.         var vector:Vector<Useless>;
  16.         for (i in 0...1000)
  17.             vector = new Vector(72);
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment