summaryrefslogtreecommitdiff
path: root/src/parse
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-11-19 18:21:15 +0800
committerJohn Hodge <tpg@mutabah.net>2016-11-19 18:21:15 +0800
commite8189c1a3fc5c880b00b772cedaeeb5aa16d0ce0 (patch)
tree12905f647e6e45802e934b16fb4e9967a3d476b9 /src/parse
parente5123b5c5b13fb7b05f8d020e4d8e4dedba5ca73 (diff)
downloadmrust-e8189c1a3fc5c880b00b772cedaeeb5aa16d0ce0.tar.gz
Rust source update, fix a few parse issues
Diffstat (limited to 'src/parse')
-rw-r--r--src/parse/pattern.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parse/pattern.cpp b/src/parse/pattern.cpp
index 05945bf8..b0149ddb 100644
--- a/src/parse/pattern.cpp
+++ b/src/parse/pattern.cpp
@@ -206,6 +206,7 @@ AST::Pattern Parse_PatternReal1(TokenStream& lex, bool is_refutable)
case TOK_IDENT:
case TOK_LT:
case TOK_DOUBLE_LT:
+ case TOK_INTERPOLATED_PATH:
PUTBACK(tok, lex);
return Parse_PatternReal_Path( lex, Parse_Path(lex, PATH_GENERIC_EXPR), is_refutable );
case TOK_DOUBLE_COLON: