summaryrefslogtreecommitdiff
path: root/src/ast/path.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ast/path.hpp')
-rw-r--r--src/ast/path.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ast/path.hpp b/src/ast/path.hpp
index 809486b0..dbb92cde 100644
--- a/src/ast/path.hpp
+++ b/src/ast/path.hpp
@@ -27,10 +27,14 @@ class Struct;
class Trait;
class Static;
class Function;
+class ExternCrate;
TAGGED_UNION_EX(PathBinding, (), Unbound, (
(Unbound, struct {
}),
+ (Crate, struct {
+ const ExternCrate* crate_;
+ }),
(Module, struct {
const Module* module_;
}),