Avatar
omochimetaru 2/21/2018 8:48 AM
protocol HasHoge { associatedtype Hoge } protocol A { associatedtype B: HasHoge associatedtype C where C == B.Hoge } struct D: A { typealias B = String typealias C = String } 健全な形はこうか。