Advertisement
Guest User

Untitled

a guest
Aug 20th, 2014
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. private function getAnonymFct() : Function
  2. {
  3. return function () : void
  4. {
  5. var num : uint = -1;
  6.  
  7. if( num < uint.MIN_VALUE )
  8. trace( "WTF ??" );
  9. trace( getQualifiedClassName( num ) );
  10. trace( num );
  11. }
  12. }
  13.  
  14. public function Main()
  15. {
  16. getAnonymFct()();
  17. }
  18.  
  19. int
  20. WTF ??
  21. -1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement