summaryrefslogtreecommitdiff
path: root/src/hir_conv/constant_evaluation.cpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-11-19 19:16:02 +0800
committerJohn Hodge <tpg@mutabah.net>2016-11-19 19:16:02 +0800
commit5fe7fcc580db497b267ca0f820e5d3268fe8aafb (patch)
tree0506ad3834f00d3dfaabe2a6c71aa660906b52e2 /src/hir_conv/constant_evaluation.cpp
parentefa6da041f5ef34f5513e76d7c231353da6bf660 (diff)
downloadmrust-5fe7fcc580db497b267ca0f820e5d3268fe8aafb.tar.gz
HIR - Add Union type path binding
Diffstat (limited to 'src/hir_conv/constant_evaluation.cpp')
-rw-r--r--src/hir_conv/constant_evaluation.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/hir_conv/constant_evaluation.cpp b/src/hir_conv/constant_evaluation.cpp
index 06489f37..dfb008e3 100644
--- a/src/hir_conv/constant_evaluation.cpp
+++ b/src/hir_conv/constant_evaluation.cpp
@@ -652,6 +652,9 @@ namespace {
),
(Enum,
TODO(sp, "Field access on enum variant - " << m_rv_type);
+ ),
+ (Union,
+ TODO(sp, "Field access on union - " << m_rv_type);
)
)
),