Index: tests/language_strong/static_parameter_test.dart |
diff --git a/tests/language_strong/static_parameter_test.dart b/tests/language_strong/static_parameter_test.dart |
index 437883f698bab5cabb9c982bd83c2fc450df2eec..4dcc81cd5ae13abbab383d2b23c6cd7d72bcad63 100644 |
--- a/tests/language_strong/static_parameter_test.dart |
+++ b/tests/language_strong/static_parameter_test.dart |
@@ -7,8 +7,7 @@ foo(x |
, final static y // //# 02: compile-time error |
, {static y} // //# 03: compile-time error |
, [static y] // //# 04: compile-time error |
- ) { |
-} |
+ ) {} |
class C { |
bar(x |
@@ -16,16 +15,14 @@ class C { |
, final static y // //# 06: compile-time error |
, {static y} // //# 07: compile-time error |
, [static y] // //# 08: compile-time error |
- ) { |
- } |
+ ) {} |
static baz(x |
, static int y // //# 09: compile-time error |
, final static y // //# 10: compile-time error |
, {static y} // //# 11: compile-time error |
, [static y] // //# 12: compile-time error |
- ) { |
- } |
+ ) {} |
} |
main() { |