diff options
Diffstat (limited to 'src/parse/root.cpp')
-rw-r--r-- | src/parse/root.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/parse/root.cpp b/src/parse/root.cpp index 33087724..85d51ddb 100644 --- a/src/parse/root.cpp +++ b/src/parse/root.cpp @@ -1376,6 +1376,9 @@ void Parse_Use(TokenStream& lex, ::std::function<void(AST::UseStmt, ::std::strin Parse_Use_Set(lex, span_start, path, fcn); GET_CHECK_TOK(tok, lex, TOK_BRACE_CLOSE); return; + case TOK_INTERPOLATED_PATH: + path = mv$(tok.frag_path()); + break; default: throw ParseError::Unexpected(lex, tok); } |