From 79e3bedb3619746f4d2766a75e00cb59379bf3c1 Mon Sep 17 00:00:00 2001 From: Stan Thomas Date: Mon, 2 Feb 2015 17:48:35 -0500 Subject: [PATCH] declare variable type inenum test --- tests/cases/compiler/commentsdoNotEmitComments.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;