| Index: tests/lib_strong/mirrors/metadata_nested_constructor_call_test.dart
|
| diff --git a/tests/lib_strong/mirrors/metadata_nested_constructor_call_test.dart b/tests/lib_strong/mirrors/metadata_nested_constructor_call_test.dart
|
| index 00bb6c0afa023d41ebc709a29fc0978409b29fb7..483bb1699df9caf64f47ac2e48631211019d22b6 100644
|
| --- a/tests/lib_strong/mirrors/metadata_nested_constructor_call_test.dart
|
| +++ b/tests/lib_strong/mirrors/metadata_nested_constructor_call_test.dart
|
| @@ -17,7 +17,7 @@ class Box {
|
|
|
| class MutableBox {
|
| var contents;
|
| - MutableBox([this.contents]); // Not const.
|
| + MutableBox([this.contents]); // Not const.
|
| }
|
|
|
| @Box()
|
| @@ -48,7 +48,6 @@ class H {}
|
| class I {}
|
|
|
| final closure = () => 42;
|
| -
|
| @Box(closure()) // //# 07: compile-time error
|
| class J {}
|
|
|
| @@ -56,7 +55,6 @@ class J {}
|
| class K {}
|
|
|
| function() => 42;
|
| -
|
| @Box(function()) // //# 09: compile-time error
|
| class L {}
|
|
|
|
|