Index: LayoutTests/dart/compile-error-crash.html |
diff --git a/LayoutTests/dart/compile-error-crash.html b/LayoutTests/dart/compile-error-crash.html |
deleted file mode 100644 |
index bc10c2a42f95ab3ab2cf324262496828dc2b350e..0000000000000000000000000000000000000000 |
--- a/LayoutTests/dart/compile-error-crash.html |
+++ /dev/null |
@@ -1,30 +0,0 @@ |
-<html> |
-<body> |
- |
-<script type="text/javascript"> |
-if (window.layoutTestController) |
- layoutTestController.dumpAsText(); |
-</script> |
- |
-<script id="dart" type="application/dart" data-dart-entry="CompileErrorTest.main"> |
-class A { |
- void foo() {} |
-} |
- |
-class B extends A { |
- B() {} |
- void foo(String s) {} |
-} |
- |
-class CompileErrorTest { |
- static void main(Window window) { |
- // This shouldn't happen. |
- A a = new B(); |
- a.foo(); |
- window.document.body.appendChild(window.document.createTextNode('FAIL')); |
- } |
-} |
-</script> |
- |
-</body> |
-</html> |