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

Unified Diff: test/codegen/fieldtest.dart

Issue 962213003: fix analysis messages (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 10 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: test/codegen/fieldtest.dart
diff --git a/test/codegen/fieldtest.dart b/test/codegen/fieldtest.dart
index f40fb215b963df05ade09820c371560843407d02..a6d2b1fb5a1c67a65f2185222508876699a83e4c 100644
--- a/test/codegen/fieldtest.dart
+++ b/test/codegen/fieldtest.dart
@@ -31,7 +31,7 @@ int y = compute() + 444;
String get q => 'life, ' + 'the universe ' + 'and everything';
int get z => 42;
-int set z(value) {
+void set z(value) {
y = value;
}

Powered by Google App Engine
This is Rietveld 408576698