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

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

Issue 2882863002: Implement full closure inference logic. (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/inferred_type_via_closure_type_independent_of_args_top_level.dart
diff --git a/pkg/front_end/testcases/inference/inferred_type_via_closure_type_independent_of_args_top_level.dart b/pkg/front_end/testcases/inference/inferred_type_via_closure_type_independent_of_args_top_level.dart
index 246435a109d9c451c9ecf922e6cd542658d2b636..5a23706b7848fe02a2000e9e90e0967ce243e319 100644
--- a/pkg/front_end/testcases/inference/inferred_type_via_closure_type_independent_of_args_top_level.dart
+++ b/pkg/front_end/testcases/inference/inferred_type_via_closure_type_independent_of_args_top_level.dart
@@ -6,3 +6,7 @@
library test;
final /*@topType=(bool) -> int*/ f = /*@returnType=int*/ (bool b) => 1;
+
+main() {
+ f;
+}

Powered by Google App Engine
This is Rietveld 408576698