Chromium Code Reviews

Unified Diff: compiler/javatests/com/google/dart/compiler/resolver/ConstRedirectedConstructorNegativeTest.dart

Issue 8966029: Report errors and warnings for hiding elements, issue 572. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes for comments Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: compiler/javatests/com/google/dart/compiler/resolver/ConstRedirectedConstructorNegativeTest.dart
diff --git a/compiler/javatests/com/google/dart/compiler/resolver/ConstRedirectedConstructorNegativeTest.dart b/compiler/javatests/com/google/dart/compiler/resolver/ConstRedirectedConstructorNegativeTest.dart
deleted file mode 100644
index 7132c972efd02e9bfd2e1cd6e420e7e44a62618f..0000000000000000000000000000000000000000
--- a/compiler/javatests/com/google/dart/compiler/resolver/ConstRedirectedConstructorNegativeTest.dart
+++ /dev/null
@@ -1,11 +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.
-
-// expect failure - final constructor redirects to non-const constructor.
-
-class A {
- const A(x) : this.foo(x);
- A.foo(this.x) { }
- var x;
-}

Powered by Google App Engine