TypeScript/tests/cases/compiler/commentOnDecoratedClassDeclaration.ts
2016-09-07 13:55:02 -07:00

17 lines
232 B
TypeScript

// @experimentalDecorators: true
declare function decorator(x: string): any;
/**
* Leading trivia
*/
@decorator("hello")
class Remote { }
/**
* Floating Comment
*/
@decorator("hi")
class AnotherRomote {
constructor() {}
}