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

Unified Diff: tests/language/malformed_bound_test.dart

Issue 269313011: Remove static warning from an unused methods in language/malformed_bound_test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/malformed_bound_test.dart
diff --git a/tests/language/malformed_bound_test.dart b/tests/language/malformed_bound_test.dart
index 7141cf2daa3372e28bde85af4e8a97fb1f30e6fd..061c3b9453c829d4ee83da1c7dc55ee51e198ed8 100644
--- a/tests/language/malformed_bound_test.dart
+++ b/tests/language/malformed_bound_test.dart
@@ -7,11 +7,11 @@
class C<T
extends Malformed /// 01: static type warning, runtime error
> {
- f(T t) => t.foo;
+ f(T t) => t.foo; /// 01: continued
}
main() {
new C<int>()
- .f(1) /// 01: continued
+ .f(1) /// 01: continued
;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698