TypeScript/tests/baselines/reference/objectLiteralWithSemicolons4.js
Cyrus Najmabadi 23e66303fa Update tests.
2015-02-21 14:43:45 -08:00

9 lines
123 B
JavaScript

//// [objectLiteralWithSemicolons4.ts]
var v = {
a
;
//// [objectLiteralWithSemicolons4.js]
var v = {
a:
};