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

Unified Diff: tests/language/issue21159_test.dart

Issue 726703007: Fix failure reported by analyzer in test for issue 21159. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: correct patch set Created 6 years, 1 month 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/issue21159_test.dart
diff --git a/tests/language/issue21159_test.dart b/tests/language/issue21159_test.dart
index 0130b95205d2dd87a9dabd4e9f27675d0cf2ef25..ff90966a6c044d92704f93fe5703dd53b70ffe99 100644
--- a/tests/language/issue21159_test.dart
+++ b/tests/language/issue21159_test.dart
@@ -10,7 +10,8 @@ class C {
// Recurs outside the try-block to avoid disabling inlining.
foo() {
- new C()();
+ var c = new C();
+ c();
}
main() {
« 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