Index: dart/compiler/javatests/com/google/dart/compiler/resolver/ConstVariableInitializationNegativeTest2.dart |
diff --git a/dart/compiler/javatests/com/google/dart/compiler/resolver/ConstVariableInitializationNegativeTest2.dart b/dart/compiler/javatests/com/google/dart/compiler/resolver/ConstVariableInitializationNegativeTest2.dart |
deleted file mode 100644 |
index d8731f021a2531ad80ca19ec2cd58553e78134e7..0000000000000000000000000000000000000000 |
--- a/dart/compiler/javatests/com/google/dart/compiler/resolver/ConstVariableInitializationNegativeTest2.dart |
+++ /dev/null |
@@ -1,12 +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. |
- |
-// case 2 - const variable must be initialized (variable list). |
- |
-class A { |
- static foo() { |
- final Object x = 1, y, z = 3; |
- } |
-} |
- |