diff options
Diffstat (limited to 'src/resolve/use.cpp')
-rw-r--r-- | src/resolve/use.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/resolve/use.cpp b/src/resolve/use.cpp index 3377d2aa..44d50516 100644 --- a/src/resolve/use.cpp +++ b/src/resolve/use.cpp @@ -276,6 +276,15 @@ void Resolve_Use_Mod(const ::AST::Crate& crate, ::AST::Module& mod, ::AST::Path (Use, continue; // Skip for now ), + (Impl, + BUG(span, "Hit Impl in use resolution"); + ), + (NegImpl, + BUG(span, "Hit NegImpl in use resolution"); + ), + (ExternBlock, + BUG(span, "Hit Extern in use resolution"); + ), (Crate, if( allow != Lookup::Value ) return ::AST::PathBinding::make_Crate({ &crate.m_extern_crates.at(e.name) }); |