/**
 * Source file level JSDoc comment
 */

/** Some foo */
export var foo = 123;
/** Must not see this */
foo;

export class Foo {
  someProperty: string;
  someMethod() {

  }
}
