summaryrefslogtreecommitdiffstats
path: root/source/slang/mangle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/mangle.cpp')
-rw-r--r--source/slang/mangle.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/slang/mangle.cpp b/source/slang/mangle.cpp
index 63e54d065..cd90a0e41 100644
--- a/source/slang/mangle.cpp
+++ b/source/slang/mangle.cpp
@@ -117,6 +117,10 @@ namespace Slang
{
emitQualifiedName(context, declRefType->declRef);
}
+ else if (auto assocTypeDeclRefType = dynamic_cast<AssocTypeDeclRefType*>(type))
+ {
+ emitQualifiedName(context, assocTypeDeclRefType->declRef);
+ }
else
{
SLANG_UNEXPECTED("unimplemented case in mangling");