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

Unified Diff: pkg/front_end/testcases/inference/downward_inference_miscellaneous.dart

Issue 2867113002: Update expectations for instance creations to match front_end. (Closed)
Patch Set: Created 3 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
Index: pkg/front_end/testcases/inference/downward_inference_miscellaneous.dart
diff --git a/pkg/front_end/testcases/inference/downward_inference_miscellaneous.dart b/pkg/front_end/testcases/inference/downward_inference_miscellaneous.dart
index 44afa9b4712d8ae66108bc5a92009c78a95ffab6..5f45ab571363f81148cbacafd5b19f4a6f113375 100644
--- a/pkg/front_end/testcases/inference/downward_inference_miscellaneous.dart
+++ b/pkg/front_end/testcases/inference/downward_inference_miscellaneous.dart
@@ -27,6 +27,6 @@ void main() {
}
{
int f(int x) => 0;
- A<int> a = /*@typeArgs=int*/ new A(f);
+ A<int> a = new /*@typeArgs=int*/ A(f);
}
}

Powered by Google App Engine
This is Rietveld 408576698