Index: tests/language/src/CompileTimeConstantTest.dart |
diff --git a/tests/language/src/CompileTimeConstantTest.dart b/tests/language/src/CompileTimeConstantTest.dart |
deleted file mode 100644 |
index f354e10c8bc0c57a58bf72695563132ad92e0ae9..0000000000000000000000000000000000000000 |
--- a/tests/language/src/CompileTimeConstantTest.dart |
+++ /dev/null |
@@ -1,20 +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. |
- |
-class Bad { |
- int foo; |
- static int bar |
- = foo /// 01: compile-time error |
- ; |
- static int toto |
- = bar /// 02: compile-time error |
- ; |
-} |
- |
-void use(x) {} |
- |
-main() { |
- use(Bad.bar); |
- use(Bad.toto); |
-} |