summaryrefslogtreecommitdiff
path: root/src/ast/path.hpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-06-11 00:06:50 +0800
committerJohn Hodge <tpg@mutabah.net>2016-06-11 00:06:50 +0800
commit436dad1104d40270d6b6a805b412d4603f27249c (patch)
treec77dc5dd11ca268e933945c8685030e110e43fa9 /src/ast/path.hpp
parent44e187830d542acaf280f5139c8dc25e3c9fb72c (diff)
downloadmrust-436dad1104d40270d6b6a805b412d4603f27249c.tar.gz
HIR Typecheck - Constants
Diffstat (limited to 'src/ast/path.hpp')
-rw-r--r--src/ast/path.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ast/path.hpp b/src/ast/path.hpp
index c31f4bc0..efd367b1 100644
--- a/src/ast/path.hpp
+++ b/src/ast/path.hpp
@@ -61,7 +61,7 @@ TAGGED_UNION_EX(PathBinding, (), Unbound, (
::std::string name;
}),
(TraitMethod, struct {
- const Trait* struct_;
+ const Trait* trait_;
::std::string name;
}),