TypeScript/tests/cases/compiler/declarationEmitDetachedComment1.ts
2015-11-02 17:07:16 +01:00

35 lines
429 B
TypeScript

// @target: es5
// @module: commonjs
// @declaration: true
// @removeComments: false
// @filename: test1.ts
/*! Copyright 2015 MyCompany Inc. */
/**
* Hello class
*/
class Hello {
}
// @filename: test2.ts
/* A comment at the top of the file. */
/**
* Hi class
*/
class Hi {
}
// @filename: test3.ts
// A one-line comment at the top of the file.
/**
* Hola class
*/
class Hola {
}