| Index: tests/language/static_parameter_test.dart
|
| diff --git a/tests/language/static_parameter_test.dart b/tests/language/static_parameter_test.dart
|
| index 4dcc81cd5ae13abbab383d2b23c6cd7d72bcad63..724ccf7b2471ffce43f6775d56b1c5c3ad77b95e 100644
|
| --- a/tests/language/static_parameter_test.dart
|
| +++ b/tests/language/static_parameter_test.dart
|
| @@ -4,7 +4,7 @@
|
|
|
| foo(x
|
| , static int y // //# 01: compile-time error
|
| - , final static y // //# 02: compile-time error
|
| + , static final y // //# 02: compile-time error
|
| , {static y} // //# 03: compile-time error
|
| , [static y] // //# 04: compile-time error
|
| ) {}
|
| @@ -12,14 +12,14 @@ foo(x
|
| class C {
|
| bar(x
|
| , static int y // //# 05: compile-time error
|
| - , final static y // //# 06: compile-time error
|
| + , static final 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 final y // //# 10: compile-time error
|
| , {static y} // //# 11: compile-time error
|
| , [static y] // //# 12: compile-time error
|
| ) {}
|
|
|