Merge pull request #1484 from amasad/type-comment-print

[Flow] Add failing tests for printing comments w/ type alias
This commit is contained in:
Sebastian McKenzie 2015-05-08 23:46:18 +01:00
commit 1be0159b01
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;