Avatar
試そうとしたんですが最近playgroundsが開かない
7:51 AM
protocol Init { init() } protocol Proto { associatedtype JSON: Init } extension Proto { func hoge() -> JSON { return JSON() } } struct Hoge: Proto { struct JSON { } } こう書いたらtypealias書けって言われますね
👉 1
7:52 AM
あ、Hoge.JSONInit適合してないからだ