16 lines
170 B

10 years ago
function noop () {}
(function () {
10 years ago
noop( '1' ) // line comment after statement
/*
BLOCK COMMENT
*/
10 years ago
noop( '2' );
// standalone comment
})();
export default 42;