Index: tests/language/src/CompileTimeConstant5Test.dart |
diff --git a/tests/language/src/CompileTimeConstant5Test.dart b/tests/language/src/CompileTimeConstant5Test.dart |
deleted file mode 100644 |
index f5cfc4db2e88867dbd1cb5371858f5607f200016..0000000000000000000000000000000000000000 |
--- a/tests/language/src/CompileTimeConstant5Test.dart |
+++ /dev/null |
@@ -1,12 +0,0 @@ |
-// Copyright (c) 2012, 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. |
- |
-final x = true; |
-final g1 = !true; |
-final g2 = !g1; |
- |
-main() { |
- Expect.equals(false, g1); |
- Expect.equals(true, g2); |
-} |