fixed some compiler warnings, fixed as3compile spec for-in.as
[swftools.git] / lib / as3 / err / callpackageinternal.as
1 package some.other.module {
2     function getmsg() {
3         trace("error");
4     }
5 }
6
7 package {
8     import some.other.module.*;
9     getmsg();
10 }