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

Unified Diff: dart/tests/language/bad_override_test.dart

Issue 10575033: Implement override checks. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix problem that caused an assertion failure (and revert of the first attempt) Created 8 years, 6 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
« no previous file with comments | « dart/tests/co19/co19-leg.status ('k') | dart/tests/language/language.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/language/bad_override_test.dart
diff --git a/dart/tests/language/bad_override_test.dart b/dart/tests/language/bad_override_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..55955cead4a0278bfad62fae79664e0a317ab752
--- /dev/null
+++ b/dart/tests/language/bad_override_test.dart
@@ -0,0 +1,28 @@
+// 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 Fisk {
+ get fisk() => null;
+ static /// 01: compile-time error
+ set fisk(x) {}
+ static /// 02: compile-time error
+ get hest() => null;
+ set hest(x) {}
+ foo() {}
+ var field;
+ method() {}
+ nullary() {}
+}
+
+class Hest extends Fisk {
+ static foo() {} /// 03: compile-time error
+ field() {} /// 04: compile-time error
+ var method; /// 05: compile-time error
+ nullary(x) {} /// 06: compile-time error
+}
+
+main() {
+ new Fisk();
+ new Hest();
+}
« no previous file with comments | « dart/tests/co19/co19-leg.status ('k') | dart/tests/language/language.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698