diff options
author | John Hodge <tpg@mutabah.net> | 2016-11-19 19:16:02 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-11-19 19:16:02 +0800 |
commit | 5fe7fcc580db497b267ca0f820e5d3268fe8aafb (patch) | |
tree | 0506ad3834f00d3dfaabe2a6c71aa660906b52e2 /src/hir_conv/constant_evaluation.cpp | |
parent | efa6da041f5ef34f5513e76d7c231353da6bf660 (diff) | |
download | mrust-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.cpp | 3 |
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); ) ) ), |