summaryrefslogtreecommitdiff
path: root/src/ast/path.hpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2015-09-19 18:16:36 +0800
committerJohn Hodge <tpg@mutabah.net>2015-09-19 18:16:36 +0800
commite6738ed57d644572e7cbefa6d68a4118935a5f80 (patch)
treea38b823d4b3771b045239a2f811eb63824a1032c /src/ast/path.hpp
parent03e211d6eeb3f8f3c6f0b22f77c2074e81443952 (diff)
downloadmrust-e6738ed57d644572e7cbefa6d68a4118935a5f80.tar.gz
Disable UFCS resolve (due to ordering issues), fix Self handling
Diffstat (limited to 'src/ast/path.hpp')
-rw-r--r--src/ast/path.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ast/path.hpp b/src/ast/path.hpp
index 9e190453..d0cc5648 100644
--- a/src/ast/path.hpp
+++ b/src/ast/path.hpp
@@ -145,7 +145,8 @@ public:
m_crate = mv$(x.m_crate);
m_class = mv$(x.m_class);
//m_span = mv$(x.m_span);
- x.m_binding = mv$(x.m_binding);
+ m_binding = mv$(x.m_binding);
+ //DEBUG("Path, " << x);
return *this;
}