Allow for ::
prefixes in _any_ call path, not just imports.
#75
Labels
compiler
General compiler. Should eventually become more specific as the issue is triaged
Right now, you can
use
from the root of a project like this:use ::foo::Foo;
You cannot directly refer to something like this:
let my_enum = ::foo::MyEnum;
It isn't hard, it just needs to be done. The place to implement this would be in the places where
false
is passed directly in tofind_module
.The text was updated successfully, but these errors were encountered: