回答編集履歴
1
便宜的に「A または B」の表現方法を「A | B」に統一しました。
test
CHANGED
@@ -52,7 +52,7 @@
|
|
52
52
|
|
53
53
|
```
|
54
54
|
|
55
|
-
extension SomeProtocol where Self: HogeProtocol |
|
55
|
+
extension SomeProtocol where Self: HogeProtocol | FugaProtocol {
|
56
56
|
|
57
57
|
func someWhereHogeOrFuga() {
|
58
58
|
|