| Index: tests/language/src/Context2Test.dart
|
| diff --git a/tests/language/src/Context2Test.dart b/tests/language/src/Context2Test.dart
|
| index 6c327744d905836b9be92490e08761b472ea97ff..a1bac6e8245c1eba054571c29162831cbb2a46c9 100644
|
| --- a/tests/language/src/Context2Test.dart
|
| +++ b/tests/language/src/Context2Test.dart
|
| @@ -7,6 +7,8 @@
|
|
|
| class V {
|
|
|
| + notCalled(Function x) { return x(); }
|
| +
|
| foofoo(x) { return x; }
|
|
|
| hoop(input, n) {
|
| @@ -16,7 +18,7 @@ class V {
|
| switch (input) {
|
| case 3:
|
| var values = foofoo;
|
| - readPacked(() => values(input));
|
| + notCalled(() => values(input));
|
| }
|
| }
|
| }
|
|
|