In several JavaScript libraries I saw this notation at the very beginning:
/** * Library XYZ */ ;(function () { // ... and so on
While
It's good when you minify JavaScript code. It prevents unexpected syntax errors.