Avatar
Avatar
treastrain / Tanaka.R
@swift-5.10.1 @swift-6.0.3 import Foundation protocol HogeProtocol: Equatable { static var aaa: Self { get } static var bbb: Self { get } } enum Hoge: HogeProtocol { case aaa case bbb } let hoge: (some HogeProtocol) = Hoge.bbb switch hoge { case .aaa: print("aaa") case .bbb: print("bbb") default: print("default") }
bbb