remove extra tests

This commit is contained in:
Yuichi Nukiyama
2016-11-25 07:10:05 +09:00
parent 13f52c9148
commit 40252248e0
3 changed files with 0 additions and 32 deletions
@@ -1,11 +0,0 @@
tests/cases/conformance/parser/ecmascript5/ExportAssignments/parserExportAssignment10.ts(4,3): error TS1128: Declaration or statement expected.
==== tests/cases/conformance/parser/ecmascript5/ExportAssignments/parserExportAssignment10.ts (1 errors) ====
export default "123";
namespace Foo {
var foo;
export foo;
~~~~~~
!!! error TS1128: Declaration or statement expected.
}
@@ -1,16 +0,0 @@
//// [parserExportAssignment10.ts]
export default "123";
namespace Foo {
var foo;
export foo;
}
//// [parserExportAssignment10.js]
"use strict";
exports.__esModule = true;
exports["default"] = "123";
var Foo;
(function (Foo) {
var foo;
foo;
})(Foo || (Foo = {}));
@@ -1,5 +0,0 @@
export default "123";
namespace Foo {
var foo;
export foo;
}