Index: tests/language/src/Label3NegativeTest.dart |
diff --git a/tests/language/src/Label3NegativeTest.dart b/tests/language/src/Label3NegativeTest.dart |
deleted file mode 100644 |
index 56482ee61a2a6ab3f4945ae2728f919c8a034ab4..0000000000000000000000000000000000000000 |
--- a/tests/language/src/Label3NegativeTest.dart |
+++ /dev/null |
@@ -1,19 +0,0 @@ |
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
-// for details. All rights reserved. Use of this source code is governed by a |
-// BSD-style license that can be found in the LICENSE file. |
-// Dart test program to test check that we catch label errors. |
- |
- |
-class Label3NegativeTest { |
- static testMain() { |
- L: while (false) { |
- if (true) break L; // Ok |
- } |
- continue L; // Illegal: L is out of scope. |
- } |
-} |
- |
- |
-main() { |
- Label3NegativeTest.testMain(); |
-} |