local imports ------------- namespace stuff { int x; int y; } // import local into namespace namespace a { import stuff; // perhaps "import local" } int func() { import stuff; x = y+1; }