remove dead tests

This commit is contained in:
Sebastian McKenzie
2015-03-31 01:27:48 +11:00
parent 80fed5f395
commit 7895857624
19 changed files with 0 additions and 45 deletions

View File

@@ -1,2 +0,0 @@
import { foo } from "foo";
var foo;

View File

@@ -1,3 +0,0 @@
{
"throws": "Illegal assignment of module import"
}

View File

@@ -1,2 +0,0 @@
import { foo } from "foo";
foo.bar = 1;

View File

@@ -1,3 +0,0 @@
{
"throws": "Illegal assignment of module import"
}

View File

@@ -1,2 +0,0 @@
import * as foo from "foo";
foo = 1;

View File

@@ -1,3 +0,0 @@
{
"throws": "Illegal assignment of module import"
}

View File

@@ -1,2 +0,0 @@
import * as foo from "foo";
var foo;

View File

@@ -1,3 +0,0 @@
{
"throws": "Illegal assignment of module import"
}

View File

@@ -1,2 +0,0 @@
import { foo as bar } from "foo";
var bar;

View File

@@ -1,3 +0,0 @@
{
"throws": "Illegal assignment of module import"
}

View File

@@ -1,2 +0,0 @@
import { foo as bar } from "foo";
bar = 1;

View File

@@ -1,3 +0,0 @@
{
"throws": "Illegal assignment of module import"
}

View File

@@ -1,2 +0,0 @@
import { foo } from "foo";
import { foo } from "bar";

View File

@@ -1,3 +0,0 @@
{
"throws": "Illegal assignment of module import"
}

View File

@@ -1,2 +0,0 @@
import { foo as bar } from "foo";
import { foo as bar } from "bar";

View File

@@ -1,3 +0,0 @@
{
"throws": "Illegal assignment of module import"
}

View File

@@ -1,2 +0,0 @@
import { foo } from "foo";
foo = 1;

View File

@@ -1,3 +0,0 @@
{
"throws": "Illegal assignment of module import"
}