| Index: tests/language/import_core_prefix_test.dart
|
| ===================================================================
|
| --- tests/language/import_core_prefix_test.dart (revision 14716)
|
| +++ tests/language/import_core_prefix_test.dart (working copy)
|
| @@ -6,10 +6,14 @@
|
| #library("ImportCorePrefixTest.dart");
|
| #import("dart:core", prefix:"mycore");
|
|
|
| +class Object {
|
| +}
|
| +
|
| void main() {
|
| var test = new mycore.Map<mycore.int,mycore.String>();
|
| mycore.bool boolval = false;
|
| mycore.int variable = 10;
|
| mycore.num value = 10;
|
| mycore.dynamic d = null;
|
| + mycore.print(new Object());
|
| }
|
|
|