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

Unified Diff: tests/language/const_constructor2_test.dart

Issue 270633010: Fix 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 | tests/language/language_analyzer.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/const_constructor2_test.dart
diff --git a/tests/language/const_constructor2_test.dart b/tests/language/const_constructor2_test.dart
index 2ebb00f725ffff9d743f152fe0d47c0415e20ec9..13358891dcc93fa4574393fc4d29631cb92551ce 100644
--- a/tests/language/const_constructor2_test.dart
+++ b/tests/language/const_constructor2_test.dart
@@ -41,8 +41,8 @@ class F<V> implements E {
}
class G<W> implements F {
- final field;
- const G(W this.field);
+ final W field;
+ const G(field) : this.field = field;
}
main() {
« no previous file with comments | « no previous file | tests/language/language_analyzer.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698