File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -650,7 +650,8 @@ class JSONFixitWriter : public DiagnosticConsumer {
650
650
Info.ID == diag::deprecated_protocol_composition.ID ||
651
651
Info.ID == diag::deprecated_protocol_composition_single.ID ||
652
652
Info.ID == diag::deprecated_any_composition.ID ||
653
- Info.ID == diag::deprecated_operator_body.ID )
653
+ Info.ID == diag::deprecated_operator_body.ID ||
654
+ Info.ID == diag::unbound_generic_parameter_explicit_fix.ID )
654
655
return true ;
655
656
656
657
return false ;
Original file line number Diff line number Diff line change @@ -189,6 +189,7 @@ var graph: Graph3
189
189
190
190
class Graph4 < NodeType : SomeProt > { }
191
191
var graph : Graph4
192
+ var graphAgain = Graph4 ( )
192
193
193
194
class GraphCombo < NodeType : SomeProt & ObjCProt > { }
194
195
var graph : GraphCombo
Original file line number Diff line number Diff line change @@ -192,6 +192,7 @@ var graph: Graph3<ObjCProt>
192
192
193
193
class Graph4<NodeType : SomeProt> {}
194
194
var graph: Graph4<<#NodeType: SomeProt#>>
195
+ var graphAgain = Graph4<<#NodeType: SomeProt#>>()
195
196
196
197
class GraphCombo<NodeType : SomeProt & ObjCProt> {}
197
198
var graph: GraphCombo<<#NodeType: ObjCProt & SomeProt#>>
You can’t perform that action at this time.
0 commit comments