Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(813)

Unified Diff: tests/language/src/FieldOverrideTest.dart

Issue 9664065: Base test case of a multi-test now insists no static type warnings (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reverted SyntaxTest Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/language/src/FieldOverrideTest.dart
diff --git a/tests/language/src/FieldOverrideTest.dart b/tests/language/src/FieldOverrideTest.dart
index 41394930423803e5a54856d4875fd723d099464e..15e561b03d612559569e41820cd9741e4253b754 100644
--- a/tests/language/src/FieldOverrideTest.dart
+++ b/tests/language/src/FieldOverrideTest.dart
@@ -1,7 +1,6 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// 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.
-// VMOptions=--enable_type_checks
// Test overriding of fields.
@@ -30,8 +29,8 @@ class SubSub extends Super {
main() {
SubSub val1 = new SubSub();
- val1.field = new B2();
- Expect.equals(true, val1.field is B2);
+ val1.field = new B2(); /// 02: static type warning
+ Expect.equals(true, val1.field is B2); /// 02: continued
Sub val2 = new Sub();
val2.field = new A();

Powered by Google App Engine
This is Rietveld 408576698