Files
swift-mirror/test/multifile/Inputs/conditional-conformance-catch22.swift
Robert Widmann eba9bbe36b Use the Formal Access *Scope* of the Extended Nominal For Its Max Access
Formal access alone does not take into account @testable imports of
internal types. This prevented otherwise valid conditional conformances
of these types from compiling.

rdar://72875683
2021-01-15 17:10:49 -08:00

4 lines
79 B
Swift

struct Catch22<Value>: Equatable where Value: Equatable {
var value: Value
}