We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 277674a + 7afab47 commit ba90437Copy full SHA for ba90437
stdlib/public/runtime/Metadata.cpp
@@ -6264,7 +6264,8 @@ swift_getAssociatedTypeWitnessRelativeSlowImpl(
6264
auto result = swift_getTypeByMangledName(
6265
request, mangledName, substitutions.getGenericArgs(),
6266
[&substitutions](unsigned depth, unsigned index) {
6267
- return substitutions.getMetadata(depth, index);
+ // FIXME: Variadic generics
6268
+ return substitutions.getMetadata(depth, index).getMetadata();
6269
},
6270
[&substitutions](const Metadata *type, unsigned index) {
6271
return substitutions.getWitnessTable(type, index);
0 commit comments