UNPKG

jsx

Version:

a faster, safer, easier JavaScript

19 lines (17 loc) 262 B
/*EXPECTED hello */ class _Main { class Inner { class Innermore { class Innermost { static function hello () : void { log 'hello'; } } } } static function main (args : string[]) : void { _Main.Inner.Innermore.Innermost.hello(); } }