Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package;
- import haxe.ds.Vector;
- class Useless {
- public function new() { }
- }
- class ReproCase {
- public function new() { }
- public function GoBang() : Void {
- // Might need to increase 1000 if it doesn't go bang for you.
- var vector:Vector<Useless>;
- for (i in 0...1000)
- vector = new Vector(72);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment