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

Unified Diff: tests/language/generic_local_functions_test.dart

Issue 2822103002: Roll back files where the formatter made non-whitespace changes. (Closed)
Patch Set: Created 3 years, 8 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/generic_methods_generic_function_parameter_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/generic_local_functions_test.dart
diff --git a/tests/language/generic_local_functions_test.dart b/tests/language/generic_local_functions_test.dart
index 18da21edd7af1f581d9820ef96d943c95560df33..7b852972f04ee4aaae87b993c8ef8c1c9c25b4af 100644
--- a/tests/language/generic_local_functions_test.dart
+++ b/tests/language/generic_local_functions_test.dart
@@ -12,7 +12,7 @@ library generic_local_functions_test;
import "package:expect/expect.dart";
// Declare a generic function parameter.
-int f(Y g(Map<X, Y> arg, X x)) => g<int, int>(<int, int>{1: 42}, 1);
+int f(Y g<X, Y>(Map<X, Y> arg, X x)) => g<int, int>(<int, int>{1: 42}, 1);
main() {
// Declare a generic local function
« no previous file with comments | « no previous file | tests/language/generic_methods_generic_function_parameter_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698