[Flow] Add failing tests for printing comments w/ type alias

This commit is contained in:
Amjad Masad 2015-05-08 15:33:00 -07:00
parent f8b8723bef
commit ed56fecd04
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,4 @@
var x = 1;
// comment 1
type FunWithComments = number
var y = 2;

View File

@ -0,0 +1,3 @@
var x = 1;
// comment 1
var y = 2;