notes: """
  In block comments, CoffeeScript converts `#` into JavaDoc-style ` *`. Hence,
  Js2coffee will transform ` *` inside block comments into the more
  CoffeeScript-like `#`.
"""
----
a();
/*
 * hello
 */
b();
----
a()

###
# hello
###

b()
