Updated, Correct Answer
My original answer was wrong and I sincerely apologize. I will leave all my condescending comments and information intact so that the shame might forever remind me to never trust anything Adobe says again. Current documentation now says:
"If you no longer need an event listener, remove it by calling removeEventListener(), or memory problems could result. Event listeners are not automatically removed from memory because the garbage collector does not remove the listener as long as the dispatching object exists (unless the useWeakReference parameter is set to true)."
Note that the event listeners ARE garbage collected weather there are weak reference or not, as long as the dispatching object is removed first. So in both of these cases, they will never cause a memory leak. I ask the OP to un-check my answer as correct and give the credit/correct answer + upvotes to @Malyngo.
Original (wrong)Answer and (mis)Information Follows
Both would. Binding an event listener creates a strong reference to the original object, and therefore the garbage collector will not clean it up. You need to remove the event listeners explicitly or specify them as weak references, which should be one of the parameters of addEventListener.
For the people arguing that listeners won't stop other objects from being garbage collected
http://gingerbinger.com/2010/07/actionscript-3-0-events-the-myth-of-useweakreference/
Summary of article:
"Imagine that our player dies, and we want him to be cleaned up. However, the event listener creates a reference from the stage to the player. The stage is the topmost display object and is always accessible. Therefore, when the mark-sweep process runs, this event listener allows the garbage collector to hop from the stage to our player object, even if we’ve cleared all other references and removed it from the display list."
So there is still at least one scenario where an event listener alone, strongly bound, can prevent an object from being collected.
Best-practice solution:
1) Remove it from the display list.
2) If it’s a MovieClip, tell it to stop().
3) Remove any event listeners that the object has created.
4) Clear any references in parent objects by setting them to null.
Update Again
A memory leak doesn't necessarily mean you will see the applications memory continuously grow. A memory leak can also simply describe memory which is allocated and persists for the life of the application, when it should be recycled. Something like this test code will not be very easily detectable. But make this happen N times over an hour long game and I guarantee you it will show. I had the same situation happen with an encryption algorithm I wrote once. After a while, my app started chugging along at 10 or less frames per second, because the VM had eaten up a ton of memory it wasn't actually using anymore yet it was still managing it.