Advertisement
tinyevil

Untitled

Jul 6th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. namespace outter{
  2.  
  3. function foo():inner.Bar{}
  4. struct Foo{}
  5.  
  6. invoke inner.bar();
  7.  
  8. namespace inner{
  9. struct Bar{}
  10.  
  11. function bar():Foo { foo(); }
  12. }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement