diff --git a/tests/cases/compiler/commentsdoNotEmitComments.ts b/tests/cases/compiler/commentsdoNotEmitComments.ts index f2475f8437e..6895f67b6b0 100644 --- a/tests/cases/compiler/commentsdoNotEmitComments.ts +++ b/tests/cases/compiler/commentsdoNotEmitComments.ts @@ -92,4 +92,4 @@ declare var x; /** const enum member value comment (generated by TS) */ const enum color { red, green, blue } -var shade = color.green; +var shade: color = color.green;