| Index: dart/tests/language/dynamic_prefix_core_test.dart
|
| ===================================================================
|
| --- dart/tests/language/dynamic_prefix_core_test.dart (revision 29908)
|
| +++ dart/tests/language/dynamic_prefix_core_test.dart (working copy)
|
| @@ -9,9 +9,9 @@
|
|
|
| void main() {
|
| // Should still be available because it is not a member of dart:core.
|
| - Expect.isTrue(dynamic is Type);
|
| -
|
| - Expect.throws(() => mycore.dynamic is Type,
|
| - (e) => e is NoSuchMethodError,
|
| + Expect.isTrue(dynamic is mycore.Type);
|
| +
|
| + Expect.throws(() => mycore.dynamic is mycore.Type,
|
| + (e) => e is mycore.NoSuchMethodError,
|
| 'dynamic is not a member of dart:core');
|
| }
|
|
|