File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1899,15 +1899,17 @@ static ProtocolConformanceRef getPackTypeConformance(
1899
1899
auto patternConformance =
1900
1900
(patternType->isTypeParameter ()
1901
1901
? ProtocolConformanceRef (protocol)
1902
- : mod->lookupConformance (patternType, protocol));
1902
+ : mod->lookupConformance (patternType, protocol,
1903
+ /* allowMissing=*/ true ));
1903
1904
patternConformances.push_back (patternConformance);
1904
1905
continue ;
1905
1906
}
1906
1907
1907
1908
auto patternConformance =
1908
1909
(packElement->isTypeParameter ()
1909
1910
? ProtocolConformanceRef (protocol)
1910
- : mod->lookupConformance (packElement, protocol));
1911
+ : mod->lookupConformance (packElement, protocol,
1912
+ /* allowMissing=*/ true ));
1911
1913
patternConformances.push_back (patternConformance);
1912
1914
}
1913
1915
You can’t perform that action at this time.
0 commit comments