summaryrefslogtreecommitdiff
path: root/src/ast/ast.hpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-08-31 15:10:46 +0800
committerJohn Hodge <tpg@mutabah.net>2016-08-31 15:10:46 +0800
commit4455197bebd63090768c9eee8f53cf225e44b64e (patch)
tree9429ffd3b931661d53fa906b060137a66914848f /src/ast/ast.hpp
parent86bbb1aff4b4375e45b5fb04e586f81ff98edb95 (diff)
downloadmrust-4455197bebd63090768c9eee8f53cf225e44b64e.tar.gz
Resolve - Hack in support for multiple bindings for one use
Diffstat (limited to 'src/ast/ast.hpp')
-rw-r--r--src/ast/ast.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ast/ast.hpp b/src/ast/ast.hpp
index 9cf9b236..1e0466a3 100644
--- a/src/ast/ast.hpp
+++ b/src/ast/ast.hpp
@@ -421,8 +421,9 @@ private:
struct UseStmt
{
Span sp;
- ::AST::Path path;
::AST::MetaItems attrs;
+ ::AST::Path path;
+ ::AST::PathBinding alt_binding;
UseStmt()
{}